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 6cb9a74 commit 0cf3a9fCopy full SHA for 0cf3a9f
ci/run_tests.sh
@@ -81,14 +81,30 @@ do
81
echo "$filename"
82
"$fpm" ${cmdrun[$j]} $filename
83
test -e $filename.txt
84
+ # non-i-th tests should not have run
85
for k in ${others[@]}
86
do
87
test ! -e ${targets[$k]}$k.txt
88
done
89
90
91
+
92
+# Test building all test targets
93
+cmdrun=( "test" "test --runner time" )
94
+for j in {0..1}
95
+do
96
+ rm -f *.txt
97
+ "$fpm" ${cmdrun[$j]}
98
+ # all tests should have run
99
+ for k in ${cases[@]}
100
+ do
101
+ test -e test$k.txt
102
+ done
103
+done
104
105
popd
106
107
108
pushd auto_discovery_off
109
"$fpm" build
110
"$fpm" run --target auto_discovery_off
0 commit comments