Skip to content

Commit cec894a

Browse files
committed
GW: Fix: Permission denied when running test.sh
1 parent 107cc86 commit cec894a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/run_all_tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export CC=gcc
99
export CFLAGS="-Wall -Wextra -std=c99"
1010

1111
echo "Test 1/2: Running tests with C Compiler ($CC)"
12-
$TESTS_DIR/test.sh || exit
12+
bash $TESTS_DIR/test.sh || exit
1313

1414
#######################################################################
1515
# Compiling and running tests with G++
@@ -18,6 +18,6 @@ export CC=g++
1818
export CFLAGS="-Wall -Wextra"
1919

2020
echo "Test 2/2: Running tests with C++ Compiler ($CC)"
21-
$TESTS_DIR/test.sh || exit
21+
bash $TESTS_DIR/test.sh || exit
2222

2323
echo "[ALl tests passed]"

0 commit comments

Comments
 (0)