summaryrefslogtreecommitdiff
path: root/jstests/core/run_program1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/run_program1.js')
-rw-r--r--jstests/core/run_program1.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/jstests/core/run_program1.js b/jstests/core/run_program1.js
index 871b53c8ddd..e5f320b0bf4 100644
--- a/jstests/core/run_program1.js
+++ b/jstests/core/run_program1.js
@@ -1,19 +1,19 @@
-if ( ! _isWindows() ) {
-
+if (!_isWindows()) {
// note that normal program exit returns 0
- assert.eq (0, runProgram('true'));
+ assert.eq(0, runProgram('true'));
assert.neq(0, runProgram('false'));
assert.neq(0, runProgram('this_program_doesnt_exit'));
- //verify output visually
+ // verify output visually
runProgram('echo', 'Hello', 'World.', 'How are you?');
- runProgram('bash', '-c', 'echo Hello World. "How are you?"'); // only one space is printed between Hello and World
+ runProgram('bash', '-c', 'echo Hello World. "How are you?"'); // only one space is
+ // printed between Hello
+ // and World
// numbers can be passed as numbers or strings
runProgram('sleep', 0.5);
runProgram('sleep', '0.5');
} else {
-
runProgram('cmd', '/c', 'echo hello windows');
}