From 95a2cbb421abc8b559f38043bd535e2180310ed4 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Mon, 15 Mar 2021 12:15:11 +0200 Subject: Delete leftover files from some tests. --- run_unittests.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'run_unittests.py') diff --git a/run_unittests.py b/run_unittests.py index 7e7ec93..c5a43f6 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -5793,12 +5793,16 @@ class FailureTests(BasePlatformTests): contain required keys. ''' tdir = os.path.join(self.unit_test_dir, '20 subproj dep variables') + stray_file = os.path.join(tdir, 'subprojects/subsubproject.wrap') + if os.path.exists(stray_file): + os.unlink(stray_file) out = self.init(tdir, inprocess=True) self.assertRegex(out, r"Neither a subproject directory nor a .*nosubproj.wrap.* file was found") self.assertRegex(out, r'Function does not take positional arguments.') self.assertRegex(out, r'Dependency .*somenotfounddep.* from subproject .*subprojects/somesubproj.* found: .*NO.*') self.assertRegex(out, r'Dependency .*zlibproxy.* from subproject .*subprojects.*somesubproj.* found: .*YES.*') self.assertRegex(out, r'Missing key .*source_filename.* in subsubproject.wrap') + os.unlink(stray_file) def test_exception_exit_status(self): ''' -- cgit v1.1