sandboxos => tildefriends
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3157 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
19
tests/03-child
Executable file
19
tests/03-child
Executable file
@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
cat > test.js << EOF
|
||||
var task = new Task();
|
||||
task.onExit = function() {
|
||||
print("child exited");
|
||||
};
|
||||
task.activate();
|
||||
task.execute("child.js").then(function() {
|
||||
print("child started");
|
||||
});
|
||||
EOF
|
||||
|
||||
cat > child.js << EOF
|
||||
print("I am the child process.");
|
||||
exit(0);
|
||||
EOF
|
||||
|
||||
$SANDBOXOS test.js
|
Reference in New Issue
Block a user