diff options
Diffstat (limited to 'tests/newconfig/tfoo.nim')
-rw-r--r-- | tests/newconfig/tfoo.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/newconfig/tfoo.nim b/tests/newconfig/tfoo.nim index f332cd6d4..0c6ded470 100644 --- a/tests/newconfig/tfoo.nim +++ b/tests/newconfig/tfoo.nim @@ -1,6 +1,6 @@ discard """ - cmd: "nim default $file" - output: '''hello world! 0.5''' + cmd: "nim default --hint:cc:off --hint:cc $file" + output: '''hello world! 0.5 true''' nimout: '''[NimScript] exec: gcc -v''' """ @@ -10,4 +10,4 @@ when not defined(definedefine): import math, mfriends discard gen[int]() -echo "hello world! ", ln 2.0 +echo "hello world! ", ln 2.0, " ", compileOption("opt", "speed") |