summaryrefslogtreecommitdiff
path: root/third_party/waf/waflib/Tools/waf_unit_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/waf/waflib/Tools/waf_unit_test.py')
-rw-r--r--third_party/waf/waflib/Tools/waf_unit_test.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/third_party/waf/waflib/Tools/waf_unit_test.py b/third_party/waf/waflib/Tools/waf_unit_test.py
index b1db1704c9c..a71ed1c0909 100644
--- a/third_party/waf/waflib/Tools/waf_unit_test.py
+++ b/third_party/waf/waflib/Tools/waf_unit_test.py
@@ -1,7 +1,3 @@
-#! /usr/bin/env python
-# encoding: utf-8
-# WARNING! Do not edit! https://waf.io/book/index.html#_obtaining_the_waf_file
-
#!/usr/bin/env python
# encoding: utf-8
# Carlos Rafael Giani, 2006
@@ -156,6 +152,7 @@ def add_test_results(self, tup):
except AttributeError:
self.bld.utest_results = [tup]
+@Task.deep_inputs
class utest(Task.Task):
"""
Execute a unit test
@@ -235,11 +232,6 @@ class utest(Task.Task):
def get_cwd(self):
return getattr(self.generator, 'ut_cwd', self.inputs[0].parent)
- def sig_explicit_deps(self):
- lst = [os.stat(node.abspath()).st_mtime for node in self.inputs]
- self.m.update(str(lst))
- return super(utest, self).sig_explicit_deps()
-
def summary(bld):
"""
Display an execution summary::