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 6defd07 commit 6b197fdCopy full SHA for 6b197fd
tests/record.sh
@@ -19,7 +19,7 @@ for fn in $DIR/*.c; do
19
gcc -Wall -Wextra $fn -o $bin_file || exit
20
21
echo "Running and recording output into '$exp_file'"
22
- ./$bin_file > $exp_file
+ $bin_file > $exp_file
23
chmod -w $exp_file || exit
24
done
25
tests/test.sh
@@ -26,7 +26,7 @@ for fn in $TESTS_DIR/*.c; do
26
echo " Compiling and running '$fn'"
27
28
29
- ./$bin_file > $out_file
+ $bin_file > $out_file
30
diff $out_file $exp_file || exit
31
32
0 commit comments