diff options
author | isaacs <i@izs.me> | 2012-12-29 16:49:18 -0800 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-12-29 16:53:23 -0800 |
commit | 6c80ef01c1fb48a57a78ca64145e7312f8d052c4 (patch) | |
tree | 7f60b0cd12c5ec13c14acd0990188f66f598533d /test | |
parent | 7550e31d1ad68dac2fdecc93cc26fcc163de82dc (diff) | |
download | node-new-6c80ef01c1fb48a57a78ca64145e7312f8d052c4.tar.gz |
node: emit 'exit' when exiting with error
Fix #3555
Diffstat (limited to 'test')
-rw-r--r-- | test/message/error_exit.js | 29 | ||||
-rw-r--r-- | test/message/error_exit.out | 13 | ||||
-rw-r--r-- | test/message/undefined_reference_in_new_context.js | 2 |
3 files changed, 43 insertions, 1 deletions
diff --git a/test/message/error_exit.js b/test/message/error_exit.js new file mode 100644 index 0000000000..f872386e95 --- /dev/null +++ b/test/message/error_exit.js @@ -0,0 +1,29 @@ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +var common = require('../common.js'); +var assert = require('assert'); + +process.on('exit', function(code) { + console.error('Exiting with code=%d', code); +}); + +assert.equal(1, 2); diff --git a/test/message/error_exit.out b/test/message/error_exit.out new file mode 100644 index 0000000000..0e01e12567 --- /dev/null +++ b/test/message/error_exit.out @@ -0,0 +1,13 @@ +Exiting with code=1 + +assert.js:* + throw new assert.AssertionError({ + ^ +AssertionError: 1 == 2 + at Object.<anonymous> (*test*message*error_exit.js:*:*) + at Module._compile (module.js:*:*) + at Object.Module._extensions..js (module.js:*:*) + at Module.load (module.js:*:*) + at Function.Module._load (module.js:*:*) + at Module.runMain (module.js:*:*) + at process._tickCallback (node.js:*:*) diff --git a/test/message/undefined_reference_in_new_context.js b/test/message/undefined_reference_in_new_context.js index cdd232d539..90cf43549b 100644 --- a/test/message/undefined_reference_in_new_context.js +++ b/test/message/undefined_reference_in_new_context.js @@ -30,7 +30,7 @@ common.error('before'); var Script = process.binding('evals').NodeScript; // undefined reference -script = new Script('foo.bar = 5;'); +var script = new Script('foo.bar = 5;'); script.runInNewContext(); common.error('after'); |