SConscript revision 8335
12929Sktlim@umich.edu# -*- mode:python -*-
22929Sktlim@umich.edu
32932Sktlim@umich.edu# Copyright (c) 2006 The Regents of The University of Michigan
42929Sktlim@umich.edu# Copyright (c) 2009-2010 Advanced Micro Devices, Inc.
52929Sktlim@umich.edu# All rights reserved.
62929Sktlim@umich.edu#
72929Sktlim@umich.edu# Redistribution and use in source and binary forms, with or without
82929Sktlim@umich.edu# modification, are permitted provided that the following conditions are
92929Sktlim@umich.edu# met: redistributions of source code must retain the above copyright
102929Sktlim@umich.edu# notice, this list of conditions and the following disclaimer;
112929Sktlim@umich.edu# redistributions in binary form must reproduce the above copyright
122929Sktlim@umich.edu# notice, this list of conditions and the following disclaimer in the
132929Sktlim@umich.edu# documentation and/or other materials provided with the distribution;
142929Sktlim@umich.edu# neither the name of the copyright holders nor the names of its
152929Sktlim@umich.edu# contributors may be used to endorse or promote products derived from
162929Sktlim@umich.edu# this software without specific prior written permission.
172929Sktlim@umich.edu#
182929Sktlim@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
192929Sktlim@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
202929Sktlim@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
212929Sktlim@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
222929Sktlim@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
232929Sktlim@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
242929Sktlim@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
252929Sktlim@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
262929Sktlim@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
272929Sktlim@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
282932Sktlim@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
292932Sktlim@umich.edu#
302932Sktlim@umich.edu
312929Sktlim@umich.eduImport('*')
326007Ssteve.reinhardt@amd.com
337735SAli.Saidi@ARM.com#
342929Sktlim@umich.edu# Currently the ruby testser relies on Ruby specific objects (SubBlock, etc.)
352929Sktlim@umich.edu# When this dependency is removed, the ruby tester should be compiled
362929Sktlim@umich.edu# independently from Ruby
372929Sktlim@umich.edu#
382929Sktlim@umich.eduif not env['RUBY']:
392929Sktlim@umich.edu    Return()
402929Sktlim@umich.edu
412929Sktlim@umich.eduSimObject('RubyDirectedTester.py')
422929Sktlim@umich.edu
432929Sktlim@umich.eduSource('RubyDirectedTester.cc')
442929Sktlim@umich.eduSource('DirectedGenerator.cc')
452929Sktlim@umich.eduSource('SeriesRequestGenerator.cc')
462929Sktlim@umich.eduSource('InvalidateGenerator.cc')
476007Ssteve.reinhardt@amd.com
486007Ssteve.reinhardt@amd.comDebugFlag('DirectedTest')
496007Ssteve.reinhardt@amd.com