--- Harness.java.orig 2009-02-12 11:30:11.000000000 -0500 +++ Harness.java 2009-02-13 09:58:05.000000000 -0500 @@ -338,6 +338,14 @@ "after '-timeout'. Exit"); runner_timeout = Long.parseLong(args[i]); } + else if (args[i].equals("-xmlout")) + { + // User wants output in an xml file + if (++i >= args.length) + throw new RuntimeException ("No file " + + "given after '-xmlout'. Exit"); + // the filename is used directly from args + } else if (args[i].charAt(0) == '-') { // One of the ignored options (handled by RunnerProcess)