diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-05-06 12:24:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-06 12:24:16 -0700 |
commit | 39e0a5322a7555a80e583895fc729b7390d71db4 (patch) | |
tree | 1aeede8a7cd6d185836cd8816adf0e0317a42640 /nimsuggest/tester.nim | |
parent | 98cd1671a3420875b90aebf0e92a0ab762facb51 (diff) | |
download | Nim-39e0a5322a7555a80e583895fc729b7390d71db4.tar.gz |
disable tmacro_highlight on i386, refs #17945 (#17949)
Diffstat (limited to 'nimsuggest/tester.nim')
-rw-r--r-- | nimsuggest/tester.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nimsuggest/tester.nim b/nimsuggest/tester.nim index f19cf5538..b62aa8783 100644 --- a/nimsuggest/tester.nim +++ b/nimsuggest/tester.nim @@ -338,6 +338,10 @@ proc main() = else: for x in walkFiles(tpath / "t*.nim"): echo "Test ", x + when defined(i386): + if x == "nimsuggest/tests/tmacro_highlight.nim": + echo "skipping" # workaround bug #17945 + continue let xx = expandFilename x when not defined(windows): # XXX Windows IO redirection seems bonkers: |