SConscript (10196:be0e1724eb39) | SConscript (10218:5a45f124a2f7) |
---|---|
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 --- 320 unchanged lines hidden (view full) --- 329 configs += ['pc-simple-atomic', 330 'pc-simple-timing', 331 'pc-o3-timing', 332 'pc-switcheroo-full'] 333 334configs += ['simple-atomic', 'simple-timing', 'o3-timing', 'memtest', 335 'simple-atomic-mp', 'simple-timing-mp', 'o3-timing-mp', 336 'inorder-timing', 'rubytest', 'tgen-simple-mem', | 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 --- 320 unchanged lines hidden (view full) --- 329 configs += ['pc-simple-atomic', 330 'pc-simple-timing', 331 'pc-o3-timing', 332 'pc-switcheroo-full'] 333 334configs += ['simple-atomic', 'simple-timing', 'o3-timing', 'memtest', 335 'simple-atomic-mp', 'simple-timing-mp', 'o3-timing-mp', 336 'inorder-timing', 'rubytest', 'tgen-simple-mem', |
337 'tgen-simple-dram'] | 337 'tgen-dram-ctrl'] |
338 339if env['PROTOCOL'] != 'None': 340 if env['PROTOCOL'] == 'MI_example': 341 configs += [c + "-ruby" for c in configs] 342 else: 343 configs = [c + "-ruby-" + env['PROTOCOL'] for c in configs] 344 345src = Dir('.').srcdir 346for config in configs: 347 dirs = src.glob('*/*/*/ref/%s/*/%s' % (env['TARGET_ISA'], config)) 348 for d in dirs: 349 d = str(d) 350 if not os.path.exists(os.path.join(d, 'skip')): 351 test_builder(env, d) | 338 339if env['PROTOCOL'] != 'None': 340 if env['PROTOCOL'] == 'MI_example': 341 configs += [c + "-ruby" for c in configs] 342 else: 343 configs = [c + "-ruby-" + env['PROTOCOL'] for c in configs] 344 345src = Dir('.').srcdir 346for config in configs: 347 dirs = src.glob('*/*/*/ref/%s/*/%s' % (env['TARGET_ISA'], config)) 348 for d in dirs: 349 d = str(d) 350 if not os.path.exists(os.path.join(d, 'skip')): 351 test_builder(env, d) |