SConscript (4019:cdfb21ba304e) | SConscript (4130:a611c874376e) |
---|---|
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 --- 189 unchanged lines hidden (view full) --- 198if env['FULL_SYSTEM']: 199 if env['TARGET_ISA'] == 'alpha': 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'] | 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 --- 189 unchanged lines hidden (view full) --- 198if env['FULL_SYSTEM']: 199 if env['TARGET_ISA'] == 'alpha': 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 if env['TARGET_ISA'] == 'sparc': 207 configs += ['t1000-simple-atomic', 208 't1000-simple-timing'] |
|
206 207else: 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 210else: 211 configs += ['simple-atomic', 'simple-timing', 'o3-timing', 'memtest'] 212 213cwd = os.getcwd() 214os.chdir(str(Dir('.').srcdir)) 215for config in configs: 216 dirs = glob.glob('*/*/ref/%s/*/%s' % (env['TARGET_ISA'], config)) 217 for d in dirs: 218 test_builder(env, d) 219os.chdir(cwd) |