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 64d4b97 commit cdba3f3Copy full SHA for cdba3f3
1 file changed
.github/workflows/scripts/run_tests.sh
@@ -3,8 +3,8 @@
3
# Fail on failing QTest execution
4
set -e
5
6
-find . -executable -type f -name "tst_*" | while read line; do
+find . -type f -name "tst_*" -exec test -x {} \; -print | while read line; do
7
echo "Running unit test: "
8
echo "${line}"
9
($line)
10
-done
+done
0 commit comments