3 # Runs a simple test (default: ./test/userprog.o)
5 # ./run.sh [test program] [OPTIONS]
7 # ./run.sh [gdb [test program]]
9 # If you include a 'gdb' argument, the your program will be launched with gdb.
10 # You can also supply a test program argument to run something besides the
17 export LD_LIBRARY_PATH=.
19 export DYLD_LIBRARY_PATH=.
21 [ $# -gt 0 ] && [ "$1" = "gdb" ] && PREFIX=gdb && shift
22 [ $# -gt 0 ] && [ -e "$1" ] && BIN="$1" && shift