This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Tests / ThreadTest.java
diff --git a/Robust/src/Tests/ThreadTest.java b/Robust/src/Tests/ThreadTest.java
deleted file mode 100644 (file)
index 6c1bf97..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-public class Foo {
-    Foo x;
-    Foo() {}
-
-}
-
-public class ThreadTest extends Thread {
-    public ThreadTest() {
-    }
-
-    public static void main(String[] st) {
-       System.printString("hello");
-       ThreadTest tt=new ThreadTest();
-       tt.start();
-       tt=new ThreadTest();
-       tt.start();
-       System.printString("main\n");
-       System.printString("main\n");
-       System.printString("main\n");
-       System.printString("main\n");
-    }
-    public void run() {
-       System.printString("thread\n");
-       Foo x=null;
-       for(int i=0;i<1000;i++) {
-           Foo y=new Foo();
-           y.x=x;
-           x=y;
-       }
-    }
-}