From 10a141896592d465f7edcd084c50ff97a94d831e Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Fri, 22 Feb 2019 09:23:31 -0600 Subject: [PATCH] More tests added --- RUN-ALL.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 RUN-ALL.sh diff --git a/RUN-ALL.sh b/RUN-ALL.sh new file mode 100755 index 0000000..40eeb2d --- /dev/null +++ b/RUN-ALL.sh @@ -0,0 +1,23 @@ +#! /bin/bash + +cd initial-reverse +echo reverse +gcc -o reverse ~/Projects/ostep-solutions/initial-reverse/reverse.c -Wall +./test-reverse.sh +cd .. + +for p in wcat wgrep wzip wunzip; do + echo $p + cd initial-utilities/$p + gcc -o $p ~/Projects/ostep-solutions/initial-utilities/$p/$p.c -Wall + ./test-$p.sh + cd ../.. +done + +echo wish +cd processes-shell +gcc -o wish ~/Projects/ostep-solutions/processes-shell/wish/wish.c -Wall +./test-wish.sh +cd .. + +