From a59e73f746bfa0cfd61f3641f0031549d4ec691e Mon Sep 17 00:00:00 2001 From: jl7719 Date: Fri, 18 Dec 2020 12:51:53 +0000 Subject: [PATCH] Fix test script not being able to find src dir Bus fixed in previous commit --- test/test_mips_cpu_harvard.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_mips_cpu_harvard.sh b/test/test_mips_cpu_harvard.sh index 980dbdf..eabb1c1 100755 --- a/test/test_mips_cpu_harvard.sh +++ b/test/test_mips_cpu_harvard.sh @@ -1,7 +1,7 @@ #!/bin/bash SRC_DIR=${1?Error: no source directory given in argument}; -SRC=$(find ./${SRC_DIR}/*); +SRC=$(find ${SRC_DIR}/*); SRC_TEMP=""; for src in ${SRC} do