Deleted Added
sdiff udiff text old ( 9384:877293183bdf ) new ( 9401:9f0918fbb07f )
full compact
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

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

30import sys
31import re
32import string
33
34from os.path import join as joinpath
35
36import m5
37
38# Since we're in batch mode, dont allow tcp socket connections
39m5.disableAllListeners()
40
41# single "path" arg encodes everything we need to know about test
42(category, mode, name, isa, opsys, config) = sys.argv[1].split('/')[-6:]
43
44# find path to directory containing this file
45tests_root = os.path.dirname(__file__)

--- 66 unchanged lines hidden ---