Regression: Use test-progs in /dist instead of tests/test-progs since they all aren...
authorAli Saidi <saidi@eecs.umich.edu>
Tue, 14 Aug 2007 04:14:03 +0000 (00:14 -0400)
committerAli Saidi <saidi@eecs.umich.edu>
Tue, 14 Aug 2007 04:14:03 +0000 (00:14 -0400)
--HG--
extra : convert_revision : 558b970f522f95e3492b7225f227c96cd5e003c3

tests/run.py

index df34faca811ed306a7f9821fd18bc2c3ea8d6ef2..9b77ff9d2bf2b7d657fb45664de92552be301811 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
@@ -33,7 +33,10 @@ import os, sys
 
 # 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):