SConscript (3701:595232e44c52) SConscript (4019:cdfb21ba304e)
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

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

200 if not env['ALPHA_TLASER']:
201 configs += ['tsunami-simple-atomic',
202 'tsunami-simple-timing',
203 'tsunami-simple-atomic-dual',
204 'tsunami-simple-timing-dual',
205 'twosys-tsunami-simple-atomic']
206
207else:
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

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

200 if not env['ALPHA_TLASER']:
201 configs += ['tsunami-simple-atomic',
202 'tsunami-simple-timing',
203 'tsunami-simple-atomic-dual',
204 'tsunami-simple-timing-dual',
205 'twosys-tsunami-simple-atomic']
206
207else:
208 configs += ['simple-atomic', 'simple-timing', 'o3-timing']
208 configs += ['simple-atomic', 'simple-timing', 'o3-timing', 'memtest']
209
210cwd = os.getcwd()
211os.chdir(str(Dir('.').srcdir))
212for config in configs:
213 dirs = glob.glob('*/*/ref/%s/*/%s' % (env['TARGET_ISA'], config))
214 for d in dirs:
215 test_builder(env, d)
216os.chdir(cwd)
209
210cwd = os.getcwd()
211os.chdir(str(Dir('.').srcdir))
212for config in configs:
213 dirs = glob.glob('*/*/ref/%s/*/%s' % (env['TARGET_ISA'], config))
214 for d in dirs:
215 test_builder(env, d)
216os.chdir(cwd)