summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-10-23 23:13:49 +0200
committerAraq <rumpf_a@web.de>2014-10-23 23:13:49 +0200
commit201d3c9ed0dac94a337f23416c556b45f7fc1138 (patch)
treece2e5a5042d2de98dd8079507cc5728d367ea4f1 /tests
parentca4d7b1ea865d8ec3c76276c59d83edaac8a392f (diff)
parentd72818e3a390a7e887e18568e82b26ba99214717 (diff)
downloadNim-201d3c9ed0dac94a337f23416c556b45f7fc1138.tar.gz
Merge branch 'devel' into bigbreak
Conflicts:
	web/news.txt
Diffstat (limited to 'tests')
-rw-r--r--tests/modules/texport.nim3
-rw-r--r--tests/modules/tselfimport.nim3
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")