aboutsummaryrefslogtreecommitdiffstats
path: root/run_test_deliverable.sh
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-03-10 22:53:48 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-03-10 22:53:48 +0000
commit733e278a3c20988cfe1ae386fe057945a805bbb3 (patch)
tree33768c321ed595677a456c2c104944df275a4b5e /run_test_deliverable.sh
parente05e2206c362c541766c0b12abdfd4355c4b232a (diff)
downloadCompiler-733e278a3c20988cfe1ae386fe057945a805bbb3.tar.gz
Compiler-733e278a3c20988cfe1ae386fe057945a805bbb3.zip
[Doc] Writing more
Diffstat (limited to 'run_test_deliverable.sh')
-rwxr-xr-xrun_test_deliverable.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run_test_deliverable.sh b/run_test_deliverable.sh
index 32809ff..a825bfd 100755
--- a/run_test_deliverable.sh
+++ b/run_test_deliverable.sh
@@ -44,7 +44,7 @@ for DRIVER in test_deliverable/testcases/*_driver.c ; do
# Link driver object and assembly into executable
mips-linux-gnu-gcc -static working/${NAME}.s working/${NAME}_driver.o -o working/${NAME}.elf 2> working/${NAME}.link.stderr
if [[ $? -ne 0 ]]; then
- printf "\e[1;31mError\e[0m : Linker returned error message.\n"
+ printf "\e[1;31mError\e[0m : Linker returned error message.\n"
continue
fi
@@ -53,7 +53,7 @@ for DRIVER in test_deliverable/testcases/*_driver.c ; do
RESULT=$?
if [[ "$RESULT" -ne 0 ]]; then
printf "\e[1;31mError\e[0m : Testcase returned $RESULT, but expected 0.\n"
- continue
+ continue
fi
printf "\e[1;32mPass\e[0m\n"