summaryrefslogtreecommitdiff
path: root/test/modules
diff options
context:
space:
mode:
Diffstat (limited to 'test/modules')
-rw-r--r--test/modules/aa/__init__.py1
-rw-r--r--test/modules/aa/afile.odd.py1
-rw-r--r--test/modules/aa/afile.py1
-rw-r--r--test/modules/aa/bb.odd/bfile.py1
-rw-r--r--test/modules/aa/bb/__init__.py1
-rw-r--r--test/modules/aa/bb/bfile.odd.py1
-rw-r--r--test/modules/aa/bb/bfile.py1
-rw-r--r--test/modules/aa/bb/cc/__init__.py0
-rw-r--r--test/modules/aa/bb/cc/cfile.py1
-rw-r--r--test/modules/aa/zfile.py1
-rw-r--r--test/modules/covmod1.py3
-rw-r--r--test/modules/pkg1/__init__.py3
-rw-r--r--test/modules/pkg1/__main__.py3
-rw-r--r--test/modules/pkg1/p1a.py5
-rw-r--r--test/modules/pkg1/p1b.py3
-rw-r--r--test/modules/pkg1/p1c.py3
-rw-r--r--test/modules/pkg1/runmod2.py3
-rw-r--r--test/modules/pkg1/sub/__init__.py0
-rw-r--r--test/modules/pkg1/sub/__main__.py3
-rw-r--r--test/modules/pkg1/sub/ps1a.py3
-rw-r--r--test/modules/pkg1/sub/runmod3.py3
-rw-r--r--test/modules/pkg2/__init__.py2
-rw-r--r--test/modules/pkg2/p2a.py3
-rw-r--r--test/modules/pkg2/p2b.py3
-rw-r--r--test/modules/runmod1.py3
-rw-r--r--test/modules/usepkgs.py4
26 files changed, 0 insertions, 56 deletions
diff --git a/test/modules/aa/__init__.py b/test/modules/aa/__init__.py
deleted file mode 100644
index 77593d8f..00000000
--- a/test/modules/aa/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-# aa
diff --git a/test/modules/aa/afile.odd.py b/test/modules/aa/afile.odd.py
deleted file mode 100644
index c6f49e18..00000000
--- a/test/modules/aa/afile.odd.py
+++ /dev/null
@@ -1 +0,0 @@
-# afile.odd.py
diff --git a/test/modules/aa/afile.py b/test/modules/aa/afile.py
deleted file mode 100644
index 3f0e38d1..00000000
--- a/test/modules/aa/afile.py
+++ /dev/null
@@ -1 +0,0 @@
-# afile.py
diff --git a/test/modules/aa/bb.odd/bfile.py b/test/modules/aa/bb.odd/bfile.py
deleted file mode 100644
index 90875404..00000000
--- a/test/modules/aa/bb.odd/bfile.py
+++ /dev/null
@@ -1 +0,0 @@
-# bfile.py
diff --git a/test/modules/aa/bb/__init__.py b/test/modules/aa/bb/__init__.py
deleted file mode 100644
index ffbe6240..00000000
--- a/test/modules/aa/bb/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-# bb
diff --git a/test/modules/aa/bb/bfile.odd.py b/test/modules/aa/bb/bfile.odd.py
deleted file mode 100644
index b45cba8c..00000000
--- a/test/modules/aa/bb/bfile.odd.py
+++ /dev/null
@@ -1 +0,0 @@
-# bfile.odd.py
diff --git a/test/modules/aa/bb/bfile.py b/test/modules/aa/bb/bfile.py
deleted file mode 100644
index 90875404..00000000
--- a/test/modules/aa/bb/bfile.py
+++ /dev/null
@@ -1 +0,0 @@
-# bfile.py
diff --git a/test/modules/aa/bb/cc/__init__.py b/test/modules/aa/bb/cc/__init__.py
deleted file mode 100644
index e69de29b..00000000
--- a/test/modules/aa/bb/cc/__init__.py
+++ /dev/null
diff --git a/test/modules/aa/bb/cc/cfile.py b/test/modules/aa/bb/cc/cfile.py
deleted file mode 100644
index 79764751..00000000
--- a/test/modules/aa/bb/cc/cfile.py
+++ /dev/null
@@ -1 +0,0 @@
-# cfile.py
diff --git a/test/modules/aa/zfile.py b/test/modules/aa/zfile.py
deleted file mode 100644
index 924f9b77..00000000
--- a/test/modules/aa/zfile.py
+++ /dev/null
@@ -1 +0,0 @@
-# zfile.py
diff --git a/test/modules/covmod1.py b/test/modules/covmod1.py
deleted file mode 100644
index b3f5e5f2..00000000
--- a/test/modules/covmod1.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# covmod1.py: Simplest module for testing.
-i = 1
-i += 1
diff --git a/test/modules/pkg1/__init__.py b/test/modules/pkg1/__init__.py
deleted file mode 100644
index 2dfeb9c1..00000000
--- a/test/modules/pkg1/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# This __init__.py has a module-level docstring, which is counted as a
-# statement.
-"""A simple package for testing with."""
diff --git a/test/modules/pkg1/__main__.py b/test/modules/pkg1/__main__.py
deleted file mode 100644
index 66ce5956..00000000
--- a/test/modules/pkg1/__main__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# Used in the tests for run_python_module
-import sys
-print("pkg1.__main__: passed %s" % sys.argv[1])
diff --git a/test/modules/pkg1/p1a.py b/test/modules/pkg1/p1a.py
deleted file mode 100644
index be5fcdd3..00000000
--- a/test/modules/pkg1/p1a.py
+++ /dev/null
@@ -1,5 +0,0 @@
-import os, sys
-
-# Invoke functions in os and sys so we can see if we measure code there.
-x = sys.getcheckinterval()
-y = os.getcwd()
diff --git a/test/modules/pkg1/p1b.py b/test/modules/pkg1/p1b.py
deleted file mode 100644
index 59d6fb54..00000000
--- a/test/modules/pkg1/p1b.py
+++ /dev/null
@@ -1,3 +0,0 @@
-x = 1
-y = 2
-z = 3
diff --git a/test/modules/pkg1/p1c.py b/test/modules/pkg1/p1c.py
deleted file mode 100644
index a9aeef04..00000000
--- a/test/modules/pkg1/p1c.py
+++ /dev/null
@@ -1,3 +0,0 @@
-a = 1
-b = 2
-c = 3
diff --git a/test/modules/pkg1/runmod2.py b/test/modules/pkg1/runmod2.py
deleted file mode 100644
index b52964cb..00000000
--- a/test/modules/pkg1/runmod2.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# Used in the tests for run_python_module
-import sys
-print("runmod2: passed %s" % sys.argv[1])
diff --git a/test/modules/pkg1/sub/__init__.py b/test/modules/pkg1/sub/__init__.py
deleted file mode 100644
index e69de29b..00000000
--- a/test/modules/pkg1/sub/__init__.py
+++ /dev/null
diff --git a/test/modules/pkg1/sub/__main__.py b/test/modules/pkg1/sub/__main__.py
deleted file mode 100644
index b5be9f1c..00000000
--- a/test/modules/pkg1/sub/__main__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# Used in the tests for run_python_module
-import sys
-print("pkg1.sub.__main__: passed %s" % sys.argv[1])
diff --git a/test/modules/pkg1/sub/ps1a.py b/test/modules/pkg1/sub/ps1a.py
deleted file mode 100644
index 4b6a15cc..00000000
--- a/test/modules/pkg1/sub/ps1a.py
+++ /dev/null
@@ -1,3 +0,0 @@
-d = 1
-e = 2
-f = 3
diff --git a/test/modules/pkg1/sub/runmod3.py b/test/modules/pkg1/sub/runmod3.py
deleted file mode 100644
index 3a1ad155..00000000
--- a/test/modules/pkg1/sub/runmod3.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# Used in the tests for run_python_module
-import sys
-print("runmod3: passed %s" % sys.argv[1])
diff --git a/test/modules/pkg2/__init__.py b/test/modules/pkg2/__init__.py
deleted file mode 100644
index 090efbf5..00000000
--- a/test/modules/pkg2/__init__.py
+++ /dev/null
@@ -1,2 +0,0 @@
-# This is an __init__.py file, with no executable statements in it.
-# This comment shouldn't confuse the parser.
diff --git a/test/modules/pkg2/p2a.py b/test/modules/pkg2/p2a.py
deleted file mode 100644
index b606711d..00000000
--- a/test/modules/pkg2/p2a.py
+++ /dev/null
@@ -1,3 +0,0 @@
-q = 1
-r = 1
-s = 1
diff --git a/test/modules/pkg2/p2b.py b/test/modules/pkg2/p2b.py
deleted file mode 100644
index 7a34e2c6..00000000
--- a/test/modules/pkg2/p2b.py
+++ /dev/null
@@ -1,3 +0,0 @@
-t = 1
-u = 1
-v = 1
diff --git a/test/modules/runmod1.py b/test/modules/runmod1.py
deleted file mode 100644
index 671d81ef..00000000
--- a/test/modules/runmod1.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# Used in the tests for run_python_module
-import sys
-print("runmod1: passed %s" % sys.argv[1])
diff --git a/test/modules/usepkgs.py b/test/modules/usepkgs.py
deleted file mode 100644
index 93c7d904..00000000
--- a/test/modules/usepkgs.py
+++ /dev/null
@@ -1,4 +0,0 @@
-import pkg1.p1a, pkg1.p1b
-import pkg2.p2a, pkg2.p2b
-import othermods.othera, othermods.otherb
-import othermods.sub.osa, othermods.sub.osb