inorder-regress: add twolf ALPHA-SE
[gem5.git] / tests / run.py
index aa13ac437ecffc6f82149763570f1b5d14ed07de..df26c88c5f51580fd3ea956682548d7c9bab8d27 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2006 The Regents of The University of Michigan
+# Copyright (c) 2006-2007 The Regents of The University of Michigan
 # All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 #
 # Authors: Steve Reinhardt
 
-import os, sys
+import os
+import sys
+import m5
+
+# Since we're in batch mode, dont allow tcp socket connections
+m5.disableAllListeners()
 
 # single "path" arg encodes everything we need to know about test
-(category, name, isa, opsys, config) = sys.argv[1].split('/')
+(category, name, isa, opsys, config) = sys.argv[1].split('/')[-5:]
 
 # find path to directory containing this file
 tests_root = os.path.dirname(__file__)
-test_progs = os.path.join(tests_root, 'test-progs')
+if os.path.isdir('/dist/m5/regression/test-progs'):
+    test_progs = '/dist/m5/regression/test-progs'
+else:
+    test_progs = os.path.join(tests_root, 'test-progs')
 
 # generate path to binary file
 def binpath(app, file=None):
@@ -42,12 +50,19 @@ 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'))
 
 # set default maxtick... script can override
 # -1 means run forever
-maxtick = -1
+maxtick = m5.MaxTick
 
 # tweak configuration for specific test