aboutsummaryrefslogtreecommitdiff
path: root/tcltests
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2009-07-29 10:06:22 +1000
committerSteve Bennett <steveb@workware.net.au>2010-10-15 10:11:03 +1000
commitc0fb4b5c028fb81938b0f89f703307c8c3ae56ad (patch)
tree15d46ed89792899fbacad804d791519766a73dc4 /tcltests
parent343a5a6e65013e9c8fd18dbc89c122c07d43f4b9 (diff)
downloadjimtcl-c0fb4b5c028fb81938b0f89f703307c8c3ae56ad.zip
jimtcl-c0fb4b5c028fb81938b0f89f703307c8c3ae56ad.tar.gz
jimtcl-c0fb4b5c028fb81938b0f89f703307c8c3ae56ad.tar.bz2
Skip some tests if no eventloop
Diffstat (limited to 'tcltests')
-rw-r--r--tcltests/test_clientserver.tcl4
-rw-r--r--tcltests/test_eventloop.tcl3
2 files changed, 7 insertions, 0 deletions
diff --git a/tcltests/test_clientserver.tcl b/tcltests/test_clientserver.tcl
index 7cdb524..c1e555e 100644
--- a/tcltests/test_clientserver.tcl
+++ b/tcltests/test_clientserver.tcl
@@ -1,3 +1,7 @@
+if {[info commands vwait] eq ""} {
+ return "noimpl"
+}
+
proc bgerror {msg} {
#puts "bgerror: $msg"
#exit 0
diff --git a/tcltests/test_eventloop.tcl b/tcltests/test_eventloop.tcl
index 4246e20..f32a708 100644
--- a/tcltests/test_eventloop.tcl
+++ b/tcltests/test_eventloop.tcl
@@ -1,3 +1,6 @@
+if {[info commands vwait] eq ""} {
+ return "noimpl"
+}
set f [aio.socket stream localhost:80]