about summary refs log tree commit homepage
path: root/t/t9000-rack-app-pool.sh
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-10-24 22:00:29 -0700
committerEric Wong <normalperson@yhbt.net>2009-10-24 22:00:29 -0700
commitbe55d12c7855a70654022059b3e553e8eec04978 (patch)
treebc71dff375498dd0b97db0e561be067eb55e6846 /t/t9000-rack-app-pool.sh
parent15fe80b3bff7b0d249ee32bcbbe1dfa116d3c629 (diff)
downloadrainbows-be55d12c7855a70654022059b3e553e8eec04978.tar.gz
We'll probably make AppPool at least not break down and die in
the future, but for now just disable it if run directly.
Diffstat (limited to 't/t9000-rack-app-pool.sh')
-rwxr-xr-xt/t9000-rack-app-pool.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t9000-rack-app-pool.sh b/t/t9000-rack-app-pool.sh
index 994c244..989b2c1 100755
--- a/t/t9000-rack-app-pool.sh
+++ b/t/t9000-rack-app-pool.sh
@@ -1,5 +1,12 @@
 #!/bin/sh
 . ./test-lib.sh
+case $model in
+Thread*) ;;
+*)
+        t_info "skipping $T since it's not compatible with $model"
+        exit 0
+        ;;
+esac
 nr_client=30 APP_POOL_SIZE=4
 
 t_plan 6 "AppPool Rack middleware test for $model"