aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index ab8e3ae..7f7cfdc 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -66,9 +66,6 @@ class DummyFuture(conc.Future):
ask for the result. Used on platforms where sem_open() is not available:
MSYS2, OpenBSD, etc: https://bugs.python.org/issue3770
'''
- def __init__(self, *args, **kwargs):
- super().__init__(*args, **kwargs)
-
def set_function(self, fn, *args, **kwargs):
self.fn = fn
self.fn_args = args
@@ -220,7 +217,6 @@ def validate_install(srcdir, installdir, compiler):
# If this exists, the test does not install any other files
noinst_file = 'usr/no-installed-files'
expected = {}
- found = {}
ret_msg = ''
# Generate list of expected files
if os.path.exists(os.path.join(installdir, noinst_file)):