SConscript (5526:2764c7769ee3) SConscript (5703:7478bc206949)
1# -*- mode:python -*-
2
3# Copyright (c) 2004-2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

211configs = []
212if env['FULL_SYSTEM']:
213 if env['TARGET_ISA'] == 'alpha':
214 if not env['ALPHA_TLASER']:
215 configs += ['tsunami-simple-atomic',
216 'tsunami-simple-timing',
217 'tsunami-simple-atomic-dual',
218 'tsunami-simple-timing-dual',
1# -*- mode:python -*-
2
3# Copyright (c) 2004-2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

211configs = []
212if env['FULL_SYSTEM']:
213 if env['TARGET_ISA'] == 'alpha':
214 if not env['ALPHA_TLASER']:
215 configs += ['tsunami-simple-atomic',
216 'tsunami-simple-timing',
217 'tsunami-simple-atomic-dual',
218 'tsunami-simple-timing-dual',
219 'twosys-tsunami-simple-atomic']
219 'twosys-tsunami-simple-atomic',
220 'tsunami-o3', 'tsunami-o3-dual']
220 if env['TARGET_ISA'] == 'sparc':
221 configs += ['t1000-simple-atomic',
222 't1000-simple-timing']
223
224else:
225 configs += ['simple-atomic', 'simple-timing', 'o3-timing', 'memtest']
226
227cwd = os.getcwd()
228os.chdir(str(Dir('.').srcdir))
229for config in configs:
230 dirs = glob.glob('*/*/ref/%s/*/%s' % (env['TARGET_ISA'], config))
231 for d in dirs:
232 test_builder(env, d)
233os.chdir(cwd)
221 if env['TARGET_ISA'] == 'sparc':
222 configs += ['t1000-simple-atomic',
223 't1000-simple-timing']
224
225else:
226 configs += ['simple-atomic', 'simple-timing', 'o3-timing', 'memtest']
227
228cwd = os.getcwd()
229os.chdir(str(Dir('.').srcdir))
230for config in configs:
231 dirs = glob.glob('*/*/ref/%s/*/%s' % (env['TARGET_ISA'], config))
232 for d in dirs:
233 test_builder(env, d)
234os.chdir(cwd)