Also include a function to form the input path.
authorKevin Lim <ktlim@umich.edu>
Fri, 10 Nov 2006 17:39:43 +0000 (12:39 -0500)
committerKevin Lim <ktlim@umich.edu>
Fri, 10 Nov 2006 17:39:43 +0000 (12:39 -0500)
--HG--
extra : convert_revision : d2141e3b8c56296fbbe2c4c1ceb80616f269884a

tests/run.py

index aa13ac437ecffc6f82149763570f1b5d14ed07de..3002bf441e0bb74d86d8c6192fbc9994d7c366cd 100644 (file)
@@ -42,6 +42,13 @@ def binpath(app, file=None):
         file = app
     return os.path.join(test_progs, app, 'bin', isa, opsys, file)
 
+# generate path to input file
+def inputpath(app, file=None):
+    # input file has same name as app unless specified otherwise
+    if not file:
+        file = app
+    return os.path.join(test_progs, app, 'input', file)
+
 # build configuration
 execfile(os.path.join(tests_root, 'configs', config + '.py'))