mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-25 11:04:35 +00:00
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:
parent
eb49e69d99
commit
f6d9d8d41a
27 changed files with 9 additions and 9 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue