summaryrefslogtreecommitdiffstats
path: root/QMTest/TestSCons_time.py
diff options
context:
space:
mode:
Diffstat (limited to 'QMTest/TestSCons_time.py')
-rw-r--r--QMTest/TestSCons_time.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/QMTest/TestSCons_time.py b/QMTest/TestSCons_time.py
index f3ea49a..1fc9dea 100644
--- a/QMTest/TestSCons_time.py
+++ b/QMTest/TestSCons_time.py
@@ -213,24 +213,6 @@ class TestSCons_time(TestCommon):
else:
return os.path.splitext(path)
- def must_contain_all_lines(self, name, content, expected, exists=None):
- missing_lines = []
-
- if exists is None:
- exists = lambda e, c: string.find(c, e) != -1
-
- for e in expected:
- if not exists(e, content):
- missing_lines.append(e)
-
- if missing_lines:
- sys.stdout.write('%s is missing expected string(s):\n' % name)
- for m in missing_lines:
- sys.stdout.write(' ' + repr(m) + '\n')
- sys.stdout.write('%s content:\n' % name)
- sys.stdout.write(content)
- self.fail_test()
-
def fake_logfile(self, logfile_name, index=0):
self.write(self.workpath(logfile_name), logfile_contents % locals())