0 jrc *.jr
0 javac jrGen/*.java
0 cd jrGen
0 jr_rmic
0 cd ..
# stdout and stderr come out at different times on different systems
# so separate them and compare separately
1 jrrun main > No_input.out1 2> No_input.out2
0 cmp No_input.std1 No_input.out1

# 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: op initialized with a negative value" No_input.out2 > /dev/null 2>&1
0 grep "at initsem" No_input.out2 > /dev/null 2>&1

0 rm -rf jrGen core *.out No_input.out1 No_input.out2
