Changeset 5ef4008 for tests/pybin
- Timestamp:
- Sep 13, 2024, 2:43:22 PM (17 months ago)
- Branches:
- master, stuck-waitfor-destruct
- Children:
- 8c79dc3c
- Parents:
- c494b84 (diff), 9739c56f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
tests/pybin/test_run.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/test_run.py
rc494b84 r5ef4008 29 29 return os.path.normpath( os.path.join(settings.BUILDDIR, self.path, ".out" , "%s.log" % self.name) ) 30 30 31 # one file that goes to the test's stdin 31 32 def input(self): 32 33 return os.path.normpath( os.path.join(settings.SRCDIR , self.path, ".in" , "%s.txt" % self.name) ) 34 35 # several files available for this test to open 36 def inputs_all(self): 37 return os.path.normpath( os.path.join(settings.SRCDIR , self.path, ".in" , "%s.*" % self.name) ) 33 38 34 39 def target_output(self):
Note:
See TracChangeset
for help on using the changeset viewer.