0 jrc *.jr
0 javac jrGen/*.java

# separate stdout and stderr to compare
1 jrrun Main -1 0 > No_input.out0 2> No_input.err0
0 cmp execException.std No_input.out0
# details of No_input.out2 depends on Java implementation (e.g., line #s)
# so just check (some of) what is easy to check
0 grep "edu.ucdavis.jr.jrRuntimeError: Unhandled exception: java.lang.IllegalArgumentException: timeout value is negative" No_input.err0 > /dev/null 2>&1

0 jrrun Main 5 0 > No_input.out1 2>&1
0 cmp execElseafter.std No_input.out1

0 jrrun Main 5 1 > No_input.out2 2>&1
0 cmp execJoo.std No_input.out2

0 rm -fr jrGen core *.out* *.err*
