EyeTracking has the same result of the original Java version.
[IRC.git] / Robust / src / Tests / remotethreadtest.java
index e9c9f2a664640c34eb31713a1d02428f0b36d384..40faa0271f49efbcb50e7e88b1224081ac8eb602 100644 (file)
@@ -8,15 +8,15 @@ public class RemoteThread extends Thread {
        atomic {
            t= global new RemoteThread();
        }
-       System.printString("Starting");
+       System.printString("Starting\n");
        t.start(mid);
-       System.printString("Finished");
+       System.printString("Finished\n");
        //this is ugly...
        while(true) ;
     }
 
     public int run() {
-       System.printString("Remote machine");
+       System.printString("Remote machine\n");
     }
 }