Changeset b24cbaf for tests/pybin/test_run.py
- Timestamp:
- Sep 12, 2024, 4:14:29 PM (7 weeks ago)
- Branches:
- master
- Children:
- 23fb819
- Parents:
- 406c806
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/test_run.py
r406c806 rb24cbaf 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.