summaryrefslogtreecommitdiffstats
path: root/testsuite/Testsrc/Testlib/TestServer/TestPlugin/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/Testsrc/Testlib/TestServer/TestPlugin/__init__.py')
-rw-r--r--testsuite/Testsrc/Testlib/TestServer/TestPlugin/__init__.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/testsuite/Testsrc/Testlib/TestServer/TestPlugin/__init__.py b/testsuite/Testsrc/Testlib/TestServer/TestPlugin/__init__.py
new file mode 100644
index 000000000..d86cf1079
--- /dev/null
+++ b/testsuite/Testsrc/Testlib/TestServer/TestPlugin/__init__.py
@@ -0,0 +1,17 @@
+import os
+import sys
+
+# add all parent testsuite directories to sys.path to allow (most)
+# relative imports in python 2.4
+path = os.path.dirname(__file__)
+while path != "/":
+ if os.path.basename(path).lower().startswith("test"):
+ sys.path.append(path)
+ if os.path.basename(path) == "testsuite":
+ break
+ path = os.path.dirname(path)
+
+from Testbase import *
+from Testinterfaces import *
+from Testhelpers import *
+from Testexceptions import *