diff options
Diffstat (limited to 'tests/exception/t9657.nim')
-rw-r--r-- | tests/exception/t9657.nim | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/exception/t9657.nim b/tests/exception/t9657.nim index 0b6e128e0..6ac525a70 100644 --- a/tests/exception/t9657.nim +++ b/tests/exception/t9657.nim @@ -1,9 +1,12 @@ discard """ action: run exitcode: 1 - target: "c" + targets: "c cpp" + disabled: "openbsd" + disabled: "netbsd" """ -# todo: remove `target: "c"` workaround once #10343 is properly fixed + close stdmsg const m = "exception!" +# see #10343 for details on this test discard writeBuffer(stdmsg, cstring(m), m.len) |