diff options
Diffstat (limited to 'tests/exception/t9657.nim')
-rw-r--r-- | tests/exception/t9657.nim | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/tests/exception/t9657.nim b/tests/exception/t9657.nim index c96a0a597..6ac525a70 100644 --- a/tests/exception/t9657.nim +++ b/tests/exception/t9657.nim @@ -1,8 +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 -writeLine stdmsg, "exception!" +const m = "exception!" +# see #10343 for details on this test +discard writeBuffer(stdmsg, cstring(m), m.len) |