diff options
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_longexp.py')
-rw-r--r-- | AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_longexp.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_longexp.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_longexp.py new file mode 100644 index 0000000000..8c70aaf114 --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Lib/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()
|