summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-05-28 12:21:06 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-05-28 12:21:06 -0400
commit659f7b043318775f4f5ea7419082ff7f411963ff (patch)
tree8ee27041de307eb2d8944a8e47594d777d629083 /main.go
parent71c4f5e5bb5600229efb29d014af8c3a84356682 (diff)
Fix 007_stack_trace.ts by removing --abort-on-uncaught-exception
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.go b/main.go
index e34137236..a9db596ab 100644
--- a/main.go
+++ b/main.go
@@ -24,7 +24,9 @@ func FlagsParse() []string {
if *flagV8Options {
args = append(args, "--help")
}
- args = append(args, "--abort-on-uncaught-exception")
+ // Adding this causes testdata/007_stack_trace.ts to fail without a
+ // stacktrace.
+ // args = append(args, "--abort-on-uncaught-exception")
args = v8worker2.SetFlags(args)
return args