model: add process_fence()
[c11tester.git] / run.sh
diff --git a/run.sh b/run.sh
index 8eaeb3d48e5a974cd778229623fb9eff2fd8c3ed..c8dbeb46066c452d0c83260de684fdaf4e1eadf0 100755 (executable)
--- a/run.sh
+++ b/run.sh
@@ -1,3 +1,22 @@
 #!/bin/sh
+#
+# Runs a simple test (default: ./test/userprog.o)
+# Syntax:
+#  ./run.sh [test program] [OPTIONS]
+#  ./run.sh [OPTIONS]
+#  ./run.sh [gdb [test program]]
+#
+# If you include a 'gdb' argument, the your program will be launched with gdb.
+# You can also supply a test program argument to run something besides the
+# default program.
+#
+
+BIN=./test/userprog.o
+PREFIX=
+
 export LD_LIBRARY_PATH=.
-./model
+
+[ $# -gt 0 ] && [ "$1" = "gdb" ] && PREFIX=gdb && shift
+[ $# -gt 0 ] && [ -x "$1" ] && [ -f "$1" ] && BIN="$1" && shift
+
+$PREFIX $BIN $@