]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_longexp.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / test_longexp.py
CommitLineData
4710c53d 1import unittest\r
2from test import test_support\r
3\r
4class LongExpText(unittest.TestCase):\r
5 def test_longexp(self):\r
6 REPS = 65580\r
7 l = eval("[" + "2," * REPS + "]")\r
8 self.assertEqual(len(l), REPS)\r
9\r
10def test_main():\r
11 test_support.run_unittest(LongExpText)\r
12\r
13if __name__=="__main__":\r
14 test_main()\r