SConscript (6194:2078ba7cefe4) SConscript (6293:a37f8971b271)
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

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

270 # Hack for Ruby
271 configs += [c + '-ruby' for c in configs]
272
273cwd = os.getcwd()
274os.chdir(str(Dir('.').srcdir))
275for config in configs:
276 dirs = glob.glob('*/*/ref/%s/*/%s' % (env['TARGET_ISA'], config))
277 for d in dirs:
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

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

270 # Hack for Ruby
271 configs += [c + '-ruby' for c in configs]
272
273cwd = os.getcwd()
274os.chdir(str(Dir('.').srcdir))
275for config in configs:
276 dirs = glob.glob('*/*/ref/%s/*/%s' % (env['TARGET_ISA'], config))
277 for d in dirs:
278 test_builder(env, d)
278 if not os.path.exists(os.path.join(d, 'skip')):
279 test_builder(env, d)
279os.chdir(cwd)
280os.chdir(cwd)