regress (8811:be4990a2c764) regress (8814:f0fcb53bed25)
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;

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

114 targets += ['%s/%s/m5.%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:
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;

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

114 targets += ['%s/%s/m5.%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']
122 tests = ['quick', 'long']
123
124# set up test targets for scons, since we don't have any quick SPARC
125# full-system tests exclude it
126targets += ['%s/%s/tests/%s/%s/%s' % (options.build_dir, build, variant, test,
127 mode)
128 for build in builds
129 for variant in test_variants
130 for test in tests

--- 33 unchanged lines hidden ---
123
124# set up test targets for scons, since we don't have any quick SPARC
125# full-system tests exclude it
126targets += ['%s/%s/tests/%s/%s/%s' % (options.build_dir, build, variant, test,
127 mode)
128 for build in builds
129 for variant in test_variants
130 for test in tests

--- 33 unchanged lines hidden ---