JAL-3253-applet JAL-3424 headless fix for Windows
[jalview.git] / test / jalview / bin / CommandLineOperations.java
index c7b1d53..eaa395e 100644 (file)
@@ -196,6 +196,7 @@ public class CommandLineOperations
     String cmds = "nodisplay -open examples/uniref50.fa -sortbytree -props test/jalview/io/testProps.jvprops -colour zappo "
             + "-jabaws http://www.compbio.dundee.ac.uk/jabaws -nosortbytree "
             + "-features examples/testdata/plantfdx.features -annotations examples/testdata/plantfdx.annotations -tree examples/testdata/uniref50_test_tree";
+    System.out.println("CommandLine test " + ++ntest);
     Worker worker = getJalviewDesktopRunner(true, cmds, SETUP_TIMEOUT);
     String ln = null;
     while ((ln = worker.getOutputReader().readLine()) != null)
@@ -207,8 +208,11 @@ public class CommandLineOperations
     {
       System.err.println(ln);
     }
+
   }
 
+  int ntest = 0;
+
   @BeforeTest(alwaysRun = true)
   public void setUpForCommandLineInputOperations() throws IOException
   {
@@ -248,7 +252,7 @@ public class CommandLineOperations
           int timeout)
   {
     String cmd = harg + type + " " + fileName;
-    // System.out.println(">>>>>>>>>>>>>>>> Command : " + cmd);
+    System.out.println(">>>>>>>>>>>>>>>> Command : " + cmd);
     File file = new File(fileName);
     file.deleteOnExit();
     Worker worker = getJalviewDesktopRunner(withAWT, cmd, timeout);