summaryrefslogtreecommitdiff
path: root/test/message/timeout_throw.js
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-12-26 18:13:59 -0800
committerisaacs <i@izs.me>2012-12-29 10:37:31 -0800
commit1c2910d94c4f01d3dc929ed3fb3f0823dd6c256b (patch)
treef83024503c4e1550e1d38ba6f928be774d952c52 /test/message/timeout_throw.js
parentec8ebaf30090a9265cbad0535e8e0c9a02a49c9f (diff)
downloadandroid-node-v8-1c2910d94c4f01d3dc929ed3fb3f0823dd6c256b.tar.gz
android-node-v8-1c2910d94c4f01d3dc929ed3fb3f0823dd6c256b.tar.bz2
android-node-v8-1c2910d94c4f01d3dc929ed3fb3f0823dd6c256b.zip
test-message: Add setTimeout and nextTick message tests
Diffstat (limited to 'test/message/timeout_throw.js')
-rw-r--r--test/message/timeout_throw.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/message/timeout_throw.js b/test/message/timeout_throw.js
new file mode 100644
index 0000000000..6704ee4dac
--- /dev/null
+++ b/test/message/timeout_throw.js
@@ -0,0 +1,27 @@
+// 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');
+var assert = require('assert');
+
+setTimeout(function() {
+ undefined_reference_error_maker;
+});