SConscript revision 7824
111308Santhony.gutierrez@amd.com# -*- mode:python -*- 211308Santhony.gutierrez@amd.com 311308Santhony.gutierrez@amd.com# Copyright (c) 2004-2005 The Regents of The University of Michigan 411308Santhony.gutierrez@amd.com# All rights reserved. 511308Santhony.gutierrez@amd.com# 611308Santhony.gutierrez@amd.com# Redistribution and use in source and binary forms, with or without 711308Santhony.gutierrez@amd.com# modification, are permitted provided that the following conditions are 811308Santhony.gutierrez@amd.com# met: redistributions of source code must retain the above copyright 911308Santhony.gutierrez@amd.com# notice, this list of conditions and the following disclaimer; 1011308Santhony.gutierrez@amd.com# redistributions in binary form must reproduce the above copyright 1111308Santhony.gutierrez@amd.com# notice, this list of conditions and the following disclaimer in the 1211308Santhony.gutierrez@amd.com# documentation and/or other materials provided with the distribution; 1311308Santhony.gutierrez@amd.com# neither the name of the copyright holders nor the names of its 1411308Santhony.gutierrez@amd.com# contributors may be used to endorse or promote products derived from 1511308Santhony.gutierrez@amd.com# this software without specific prior written permission. 1611308Santhony.gutierrez@amd.com# 1711308Santhony.gutierrez@amd.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 1811308Santhony.gutierrez@amd.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 1911308Santhony.gutierrez@amd.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 2011308Santhony.gutierrez@amd.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 2111308Santhony.gutierrez@amd.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28# 29# Authors: Nathan Binkert 30 31Import('*') 32 33if env['TARGET_ISA'] == 'no': 34 Return() 35 36UnitTest('bitvectest', 'bitvectest.cc') 37UnitTest('circletest', 'circletest.cc') 38UnitTest('cprintftest', 'cprintftest.cc') 39UnitTest('cprintftime', 'cprintftest.cc') 40UnitTest('initest', 'initest.cc') 41UnitTest('lrutest', 'lru_test.cc') 42UnitTest('nmtest', 'nmtest.cc') 43UnitTest('offtest', 'offtest.cc') 44UnitTest('rangetest', 'rangetest.cc') 45UnitTest('rangemaptest', 'rangemaptest.cc') 46UnitTest('rangemultimaptest', 'rangemultimaptest.cc') 47UnitTest('refcnttest', 'refcnttest.cc') 48UnitTest('stattest', 'stattest.cc') 49UnitTest('strnumtest', 'strnumtest.cc') 50UnitTest('symtest', 'symtest.cc') 51UnitTest('tokentest', 'tokentest.cc') 52UnitTest('tracetest', 'tracetest.cc') 53