File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 7
7
workflow_dispatch :
8
8
9
9
jobs :
10
- regression-tests-linux-mac :
10
+ regression-tests :
11
11
name : Run on ${{ matrix.os }} using ${{ matrix.compiler }}
12
12
runs-on : ${{ matrix.os }}
13
13
env :
49
49
with :
50
50
name : ${{ matrix.compiler }}-patch.diff
51
51
path : regression-tests/${{ matrix.compiler }}-patch.diff
52
+ if-no-files-found : ignore
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ check_file () {
42
42
diff_output=$( git diff --ignore-cr-at-eol -- " $file " )
43
43
if [[ -n " $diff_output " ]]; then
44
44
echo " Non-matching $description :"
45
- printf " \n$diff_output \n\n"
45
+ printf " \n$diff_output \n\n" | tee -a " $cxx_compiler -patch.diff "
46
46
failure=1
47
47
fi
48
48
fi
@@ -195,7 +195,7 @@ for test_file in $tests; do
195
195
# The source is temporarily copied to avoid issues with bash paths in cl.exe
196
196
(cd $exec_out_dir ; \
197
197
cp ../../$expected_src $generated_cpp_name ;
198
- $compiler_cmd " $test_bin " \
198
+ $compiler_cmd " $test_bin " \
199
199
$generated_cpp_name \
200
200
> $generated_cpp_name .output 2>&1 )
201
201
compilation_result=$?
You can’t perform that action at this time.
0 commit comments