tests: move app-emu in test/others/

Signed-off-by: Andrew Vagin <avagin@virtuozzo.com>
Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
This commit is contained in:
Andrew Vagin 2016-02-27 02:06:57 +03:00 committed by Pavel Emelyanov
parent eb49e69d99
commit f6d9d8d41a
27 changed files with 9 additions and 9 deletions

View file

@ -1,20 +0,0 @@
/*
* Trivial program which requires no
* additional imports
*/
public class HelloWorld {
public static void main(String[] args) {
int nr_sleeps = 5;
for (;;) {
System.out.println("Hello World");
if (nr_sleeps == 0)
System.exit(0);
try {
Thread.sleep(1000);
nr_sleeps--;
} catch(InterruptedException ex) {
Thread.currentThread().interrupt();
}
}
}
}