summaryrefslogtreecommitdiff
path: root/lib/python2.7/test/test_longexp.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/test/test_longexp.py')
-rw-r--r--lib/python2.7/test/test_longexp.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/python2.7/test/test_longexp.py b/lib/python2.7/test/test_longexp.py
new file mode 100644
index 0000000..dd222a1
--- /dev/null
+++ b/lib/python2.7/test/test_longexp.py
@@ -0,0 +1,14 @@
+import unittest
+from test import test_support
+
+class LongExpText(unittest.TestCase):
+ def test_longexp(self):
+ REPS = 65580
+ l = eval("[" + "2," * REPS + "]")
+ self.assertEqual(len(l), REPS)
+
+def test_main():
+ test_support.run_unittest(LongExpText)
+
+if __name__=="__main__":
+ test_main()