regress (8814:f0fcb53bed25) regress (8816:c80758736323)
1#! /usr/bin/env python
2# Copyright (c) 2005-2007 The Regents of The University of Michigan
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

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

106 print >>sys.stderr, "Execution failed:", e
107 print >>sys.stderr, "When attemping to execute: %s" % cmd
108 sys.exit(1)
109
110targets = []
111
112# start with compile-only targets, if any
113if compile_variants:
1#! /usr/bin/env python
2# Copyright (c) 2005-2007 The Regents of The University of Michigan
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

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

106 print >>sys.stderr, "Execution failed:", e
107 print >>sys.stderr, "When attemping to execute: %s" % cmd
108 sys.exit(1)
109
110targets = []
111
112# start with compile-only targets, if any
113if compile_variants:
114 targets += ['%s/%s/m5.%s' % (options.build_dir, build, variant)
114 targets += ['%s/%s/gem5.%s' % (options.build_dir, build, variant)
115 for variant in compile_variants
116 for build in builds]
117
118# By default run the 'quick' tests, all expands to quick and long
119if not tests:
120 tests = ['quick']
121elif 'all' in tests:
122 tests = ['quick', 'long']

--- 41 unchanged lines hidden ---
115 for variant in compile_variants
116 for build in builds]
117
118# By default run the 'quick' tests, all expands to quick and long
119if not tests:
120 tests = ['quick']
121elif 'all' in tests:
122 tests = ['quick', 'long']

--- 41 unchanged lines hidden ---