run-doj-validation-test.sh: a single script that performs validation tests for all...
[IRC.git] / Robust / src / Benchmarks / oooJava / raytracer / test.java
1 public class test {
2
3         public static void main(String argv[]) {
4           boolean vtest=false;
5                 int size=1;
6                 if( argv.length>0 ){
7                     size=Integer.parseInt(argv[0]);
8                     if(argv.length>1){
9                       vtest=true;
10                     }
11                 }
12     JGFInstrumentor instr = new JGFInstrumentor();
13     if(!vtest){
14       instr.printHeader(3, 0);
15     }
16
17     JGFRayTracerBench rtb = new JGFRayTracerBench(instr);
18                 rtb.JGFrun(size, instr,vtest);
19         }
20
21 }