aboutsummaryrefslogtreecommitdiff
path: root/test.sh
diff options
context:
space:
mode:
authorMustafa Quraish <[email protected]>2022-01-29 17:37:00 -0500
committerMustafa Quraish <[email protected]>2022-01-29 17:37:00 -0500
commita9683512b29abd53814bf834e23f752a8999a679 (patch)
tree033d76dbf7b1249354d2967b9de53fd6af20b7cb /test.sh
parentAdd i64{max,min} helper functions (diff)
downloadcup-a9683512b29abd53814bf834e23f752a8999a679.tar.xz
cup-a9683512b29abd53814bf834e23f752a8999a679.zip
Implement blocks (lexically scoped) and conditionals
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/test.sh b/test.sh
index d665a3d..091a2bb 100755
--- a/test.sh
+++ b/test.sh
@@ -2,10 +2,11 @@
set -e
./compile.sh
-set +e
for i in `ls tests/*.sh | grep -v common.sh`
do
echo "Running $i"
bash $i
-done \ No newline at end of file
+done
+
+set +e \ No newline at end of file