]> granicus.if.org Git - python/commitdiff
test_pdb: fix failure of test_issue13183 in debug mode, and make sure files are clean...
authorGeorg Brandl <georg@python.org>
Tue, 1 May 2012 07:21:16 +0000 (09:21 +0200)
committerGeorg Brandl <georg@python.org>
Tue, 1 May 2012 07:21:16 +0000 (09:21 +0200)
Lib/test/test_pdb.py

index ac929312e3e4e7c6b852a8f65016ff6f196fafb5..157087351eb3cde6cad085c82105d1f87f36c716 100644 (file)
@@ -604,6 +604,7 @@ class PdbTestCase(unittest.TestCase):
         filename = 'main.py'
         with open(filename, 'w') as f:
             f.write(textwrap.dedent(script))
+        self.addCleanup(support.unlink, filename)
         cmd = [sys.executable, '-m', 'pdb', filename]
         stdout = stderr = None
         with subprocess.Popen(cmd, stdout=subprocess.PIPE,
@@ -660,9 +661,11 @@ class PdbTestCase(unittest.TestCase):
         """
         with open('bar.py', 'w') as f:
             f.write(textwrap.dedent(bar))
+        self.addCleanup(support.unlink, 'bar.py')
         stdout, stderr = self.run_pdb(script, commands)
-        self.assertIn('main.py(5)foo()->None', stdout.split('\n')[-3],
-                         'Fail to step into the caller after a return')
+        self.assertTrue(
+            any('main.py(5)foo()->None' in l for l in stdout.splitlines()),
+            'Fail to step into the caller after a return')
 
     def tearDown(self):
         support.unlink(support.TESTFN)