summaryrefslogtreecommitdiff
path: root/lib/python2.7/test/test_longexp.py
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2019-10-18 12:09:18 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-10-18 12:09:18 -0700
commit7b1f3622739ae5b6fb9f69d9d53c052eb9877496 (patch)
tree986903890b45b15bd336efef757f33108a88dd39 /lib/python2.7/test/test_longexp.py
parent4adfde8bc82dd39f59e0445588c3e599ada477d2 (diff)
parent60869428a903b3dc93ea77a3cbabe85999784ee7 (diff)
downloadlinux-x86-7b1f3622739ae5b6fb9f69d9d53c052eb9877496.tar.gz
Upgrade prebuilt gdb to 8.3 am: 5d01b0296c am: 037b8f141e
am: 60869428a9 Change-Id: I4bfb5cef153a43c4b261e6294f9331bce869aecd
Diffstat (limited to 'lib/python2.7/test/test_longexp.py')
-rw-r--r--lib/python2.7/test/test_longexp.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/python2.7/test/test_longexp.py b/lib/python2.7/test/test_longexp.py
deleted file mode 100644
index dd222a1..0000000
--- a/lib/python2.7/test/test_longexp.py
+++ /dev/null
@@ -1,14 +0,0 @@
-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()