diff options
author | Araq <rumpf_a@web.de> | 2014-10-23 23:13:49 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-10-23 23:13:49 +0200 |
commit | 201d3c9ed0dac94a337f23416c556b45f7fc1138 (patch) | |
tree | ce2e5a5042d2de98dd8079507cc5728d367ea4f1 /tests | |
parent | ca4d7b1ea865d8ec3c76276c59d83edaac8a392f (diff) | |
parent | d72818e3a390a7e887e18568e82b26ba99214717 (diff) | |
download | Nim-201d3c9ed0dac94a337f23416c556b45f7fc1138.tar.gz |
Merge branch 'devel' into bigbreak
Conflicts: web/news.txt
Diffstat (limited to 'tests')
-rw-r--r-- | tests/modules/texport.nim | 3 | ||||
-rw-r--r-- | tests/modules/tselfimport.nim | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/tests/modules/texport.nim b/tests/modules/texport.nim index 99228dfce..9515f9060 100644 --- a/tests/modules/texport.nim +++ b/tests/modules/texport.nim @@ -4,6 +4,9 @@ discard """ import mexporta +# bug #1029: +from rawsockets import accept + # B.TMyObject has been imported implicitly here: var x: TMyObject echo($x, q(0), q"0") diff --git a/tests/modules/tselfimport.nim b/tests/modules/tselfimport.nim index f20a40407..ddb3a5b09 100644 --- a/tests/modules/tselfimport.nim +++ b/tests/modules/tselfimport.nim @@ -1,8 +1,9 @@ discard """ file: "tselfimport.nim" - line: 6 + line: 7 errormsg: "A module cannot import itself" """ +import strutils as su # guard against regression import tselfimport #ERROR echo("Hello World") |