Skip to content
Snippets Groups Projects
Commit 8fce101c authored by deuce's avatar deuce
Browse files

Add background terminated tests.

parent 587663aa
No related branches found
No related tags found
No related merge requests found
......@@ -371,7 +371,24 @@ if (test39.readValue() != "stop") {
exit();
}
var test_40_js = new File(system.temp_dir + "test_40.js");
test_40_js.open("w+");
test_40_js.writeln('js.auto_terminate=true; js.on_exit("log(\'Background autoterminate terminated\')"); while(1) { mswait(random(500)); } ; log("Infinite loop exited!");');
test_40_js.close();
for(i=0; i<20; i++)
var test_40 = load(true, system.temp_dir + "test_40.js");
file_remove(system.temp_dir + "test_40.js");
var test_41_js = new File(system.temp_dir + "test_41.js");
test_41_js.open("w+");
test_41_js.writeln('while(!js.terminated) { mswait(random(500)); } ; log("Background terminated was true!");');
test_41_js.close();
for(i=0; i<20; i++)
var test_41 = load(true, system.temp_dir + "test_41.js");
file_remove(system.temp_dir + "test_41.js");
js.terminated=true;
mswait(3000);
log("*** Everything appears to have passed. ***");
exit();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment