0 jrc *.jr
0 javac jrGen/*.java
# separate stdout and stderr to compare
1 jrrun main > No_input.out1 2> No_input.out2
# output is nondeterministic, but will always contain:
0 grep "received GO: 1" No_input.out1 > /dev/null 2>&1
0 grep "ppc1" No_input.out1 > /dev/null 2>&1

# 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 "jrvm exception: null" No_input.out2 > /dev/null 2>&1
0 grep "java.lang.NullPointerException" No_input.out2 > /dev/null 2>&1

0 rm -rf jrGen core *.out*
