Skip to content

Commit 847602a

Browse files
committed
260510.135235.CST test_matlab_windows.yml: set verbose to false when the compiler is MinGW, or MATLAB may crash; to be investigated
1 parent affbaa2 commit 847602a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/test_matlab_windows.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,5 +123,7 @@ jobs:
123123
root_dir = pwd();
124124
cd(fullfile(root_dir, 'matlab/tests'));
125125
test_classical = true;
126-
verbose = true;
126+
% With MinGW, if we set verbose to true, MATLAB will crash with the message "ERROR: MATLAB error Exit Status: 0xc0000409".
127+
% To be investigated whether this is a bug of MATLAB or MinGW. Setting verbose to false is a workaround.
128+
verbose = ~strcmpi('${{ matrix.compiler }}', 'mingw');
127129
testprima_ex(test_classical, verbose);

0 commit comments

Comments
 (0)