diff options
author | Maciej MaĆecki <maciej.malecki@notimplemented.org> | 2011-10-22 00:32:12 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2011-10-21 15:53:09 -0700 |
commit | 8f1ba251dd8285ad9761ad5be241e3816263bb35 (patch) | |
tree | e1a7f0a03365c8bd1a17ac972f569e5ba69e1e38 /test/fixtures | |
parent | d5a21a29f847afcfee9344554ec5e35dda9f8467 (diff) | |
download | nodejs-8f1ba251dd8285ad9761ad5be241e3816263bb35.tar.gz nodejs-8f1ba251dd8285ad9761ad5be241e3816263bb35.tar.bz2 nodejs-8f1ba251dd8285ad9761ad5be241e3816263bb35.zip |
test: #1899 - output in child process raises an exception
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/GH-1899-output.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/fixtures/GH-1899-output.js b/test/fixtures/GH-1899-output.js new file mode 100644 index 000000000..d6b513324 --- /dev/null +++ b/test/fixtures/GH-1899-output.js @@ -0,0 +1,23 @@ +// 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. + +console.log('hello, world!'); + |