We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f38fc5 commit 3662309Copy full SHA for 3662309
.github/workflows/googletest.yml
@@ -45,7 +45,8 @@ jobs:
45
# Loop through all `sample*_unittest` files and run them
46
for test in ./googletest/sample*_unittest; do
47
test_name=$(basename "$test") # Extracts the file name
48
- output_file="./output/gtest/${test_name}.xml"
+ output_file="./output/gtest/${test_name}.xml"
49
+ echo "Running $test and saving output to $output_file"
50
"$test" --gtest_output=xml:"$output_file"
51
done
52
@@ -74,4 +75,4 @@ jobs:
74
75
-d ./temp
76
-sh ./corona
77
-b ./sample_source_code/CPP/googletest
- -qg
78
+ -v
0 commit comments