mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
used correct syntax for multiline results in tests
And also modified the runner to actually run them in JS.
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
discard """
|
||||
file: "tfinally.nim"
|
||||
output: "came
|
||||
output: '''came
|
||||
here
|
||||
3"
|
||||
3'''
|
||||
"""
|
||||
# Test return in try statement:
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
discard """
|
||||
file: "tfinally2.nim"
|
||||
output: "A
|
||||
output: '''A
|
||||
B
|
||||
C
|
||||
D"
|
||||
D'''
|
||||
"""
|
||||
# Test break in try statement:
|
||||
|
||||
|
||||
@@ -176,14 +176,10 @@ proc runJsTests(r: var TResults, options: string) =
|
||||
runSingleTest(r, filename, options & " -d:nodejs", targetJS)
|
||||
runSingleTest(r, filename, options & " -d:nodejs -d:release", targetJS)
|
||||
|
||||
# texceptions, texcpt1, texcsub, tfinally, tfinally2,
|
||||
# tfinally3
|
||||
for t in os.walkFiles("tests/js/t*.nim"):
|
||||
test(t)
|
||||
test "tests/run/tactiontable"
|
||||
test "tests/run/tmultim1"
|
||||
test "tests/run/tmultim3"
|
||||
test "tests/run/tmultim4"
|
||||
for testfile in ["texceptions", "texcpt1", "texcsub", "tfinally", "tfinally2", "tfinally3", "tactiontable", "tmultim1", "tmultim3", "tmultim4"]:
|
||||
test "tests/run/" & testfile & ".nim"
|
||||
|
||||
# ------------------------- register special tests here -----------------------
|
||||
proc runSpecialTests(r: var TResults, options: string) =
|
||||
|
||||
Reference in New Issue
Block a user