summaryrefslogtreecommitdiff
path: root/libgpython
diff options
context:
space:
mode:
authorredbrain <redbrain@gcc.gnu.org>2010-09-08 18:43:33 +0100
committerredbrain <redbrain@gcc.gnu.org>2010-09-08 18:43:33 +0100
commit2784366696f9ed5998be59fb1e5789d4c0f945ce (patch)
tree3908951163d325573856daab0f246a57be92db99 /libgpython
parent547c2346c4a3499b0f6234e7128eeef17f33e8bd (diff)
downloadgcc-2784366696f9ed5998be59fb1e5789d4c0f945ce.tar.gz
move of test suite files
Diffstat (limited to 'libgpython')
-rw-r--r--libgpython/testsuite/t_class_1.py5
-rw-r--r--libgpython/testsuite/t_express_1.py3
-rw-r--r--libgpython/testsuite/t_express_2.py2
-rw-r--r--libgpython/testsuite/t_method_1.py4
-rw-r--r--libgpython/testsuite/t_print_1.py1
-rw-r--r--libgpython/testsuite/t_print_2.py3
6 files changed, 0 insertions, 18 deletions
diff --git a/libgpython/testsuite/t_class_1.py b/libgpython/testsuite/t_class_1.py
deleted file mode 100644
index 2876c88b128..00000000000
--- a/libgpython/testsuite/t_class_1.py
+++ /dev/null
@@ -1,5 +0,0 @@
-class foo:
- print 1
- print 2
- def __init__( self, x ):
- print x+2
diff --git a/libgpython/testsuite/t_express_1.py b/libgpython/testsuite/t_express_1.py
deleted file mode 100644
index 5d1ebc5a445..00000000000
--- a/libgpython/testsuite/t_express_1.py
+++ /dev/null
@@ -1,3 +0,0 @@
-x = 1 + 2
-y = x
-z = y
diff --git a/libgpython/testsuite/t_express_2.py b/libgpython/testsuite/t_express_2.py
deleted file mode 100644
index b14c0b5cd40..00000000000
--- a/libgpython/testsuite/t_express_2.py
+++ /dev/null
@@ -1,2 +0,0 @@
-x = 1
-y = x + 1
diff --git a/libgpython/testsuite/t_method_1.py b/libgpython/testsuite/t_method_1.py
deleted file mode 100644
index 3ca7e16a44f..00000000000
--- a/libgpython/testsuite/t_method_1.py
+++ /dev/null
@@ -1,4 +0,0 @@
-def foo ( ):
- x = 2 + 3 + 1
- print x
-x1 = 2
diff --git a/libgpython/testsuite/t_print_1.py b/libgpython/testsuite/t_print_1.py
deleted file mode 100644
index 73656cc1280..00000000000
--- a/libgpython/testsuite/t_print_1.py
+++ /dev/null
@@ -1 +0,0 @@
-print 2+3
diff --git a/libgpython/testsuite/t_print_2.py b/libgpython/testsuite/t_print_2.py
deleted file mode 100644
index 02ba22ad7a3..00000000000
--- a/libgpython/testsuite/t_print_2.py
+++ /dev/null
@@ -1,3 +0,0 @@
-print 2+2
-x = 5 + 1
-print x, 6+1