Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheecour committed Dec 4, 2020
1 parent 41f552c commit d5ea1cd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/exception/t13115.nim
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ else:
const file = currentSourcePath
for b in "c js cpp".split:
when defined(openbsd):
if b == "js": continue # xxx bug: pending #13115
if b == "js":
# xxx bug: pending #13115
# remove special case once nodejs updated >= 12.16.2
# refs https://github.com/nim-lang/Nim/pull/16167#issuecomment-738270751
continue
for opt in ["-d:nim_t13115_static", ""]:
let cmd = fmt"{nim} r -b:{b} -d:nim_t13115 {opt} --hints:off {file}"
let (outp, exitCode) = execCmdEx(cmd)
Expand Down

0 comments on commit d5ea1cd

Please sign in to comment.