SConscript (5703:7478bc206949) | SConscript (5721:11e6f4fa85c3) |
---|---|
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 --- 209 unchanged lines hidden (view full) --- 218 'tsunami-simple-timing-dual', 219 'twosys-tsunami-simple-atomic', 220 'tsunami-o3', 'tsunami-o3-dual'] 221 if env['TARGET_ISA'] == 'sparc': 222 configs += ['t1000-simple-atomic', 223 't1000-simple-timing'] 224 225else: | 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 --- 209 unchanged lines hidden (view full) --- 218 'tsunami-simple-timing-dual', 219 'twosys-tsunami-simple-atomic', 220 'tsunami-o3', 'tsunami-o3-dual'] 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'] | 226 configs += ['simple-atomic', 'simple-timing', 'o3-timing', 'memtest', 227 'simple-atomic-mp', 'simple-timing-mp'] |
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) | 228 229cwd = os.getcwd() 230os.chdir(str(Dir('.').srcdir)) 231for config in configs: 232 dirs = glob.glob('*/*/ref/%s/*/%s' % (env['TARGET_ISA'], config)) 233 for d in dirs: 234 test_builder(env, d) 235os.chdir(cwd) |