run.py (6289:a9e7d19871b5) run.py (6874:22df98a968bf)
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 27 unchanged lines hidden (view full) ---

36# Since we're in batch mode, dont allow tcp socket connections
37m5.disableAllListeners()
38
39# single "path" arg encodes everything we need to know about test
40(category, name, isa, opsys, config) = sys.argv[1].split('/')[-5:]
41
42# find path to directory containing this file
43tests_root = os.path.dirname(__file__)
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 27 unchanged lines hidden (view full) ---

36# Since we're in batch mode, dont allow tcp socket connections
37m5.disableAllListeners()
38
39# single "path" arg encodes everything we need to know about test
40(category, name, isa, opsys, config) = sys.argv[1].split('/')[-5:]
41
42# find path to directory containing this file
43tests_root = os.path.dirname(__file__)
44if os.path.isdir('/dist/m5/regression/test-progs'):
45 test_progs = '/dist/m5/regression/test-progs'
46else:
44test_progs = os.environ.get('M5_TEST_PROGS', '/dist/m5/regression/test-progs')
45if not os.path.isdir(test_progs):
47 test_progs = joinpath(tests_root, 'test-progs')
48
49# generate path to binary file
50def binpath(app, file=None):
51 # executable has same name as app unless specified otherwise
52 if not file:
53 file = app
54 return joinpath(test_progs, app, 'bin', isa, opsys, file)

--- 27 unchanged lines hidden ---
46 test_progs = joinpath(tests_root, 'test-progs')
47
48# generate path to binary file
49def binpath(app, file=None):
50 # executable has same name as app unless specified otherwise
51 if not file:
52 file = app
53 return joinpath(test_progs, app, 'bin', isa, opsys, file)

--- 27 unchanged lines hidden ---