SConscript revision 8492
12SN/A# -*- mode:python -*-
29952Sdam.sunwoo@arm.com
39952Sdam.sunwoo@arm.com# Copyright (c) 2006 The Regents of The University of Michigan
49952Sdam.sunwoo@arm.com# Copyright (c) 2009-2010 Advanced Micro Devices, Inc.
59952Sdam.sunwoo@arm.com# All rights reserved.
69952Sdam.sunwoo@arm.com#
79952Sdam.sunwoo@arm.com# Redistribution and use in source and binary forms, with or without
89952Sdam.sunwoo@arm.com# modification, are permitted provided that the following conditions are
99952Sdam.sunwoo@arm.com# met: redistributions of source code must retain the above copyright
109952Sdam.sunwoo@arm.com# notice, this list of conditions and the following disclaimer;
119952Sdam.sunwoo@arm.com# redistributions in binary form must reproduce the above copyright
129952Sdam.sunwoo@arm.com# notice, this list of conditions and the following disclaimer in the
139952Sdam.sunwoo@arm.com# documentation and/or other materials provided with the distribution;
141762SN/A# neither the name of the copyright holders nor the names of its
159983Sstever@gmail.com# contributors may be used to endorse or promote products derived from
169983Sstever@gmail.com# this software without specific prior written permission.
172SN/A#
182SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
192SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
202SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
212SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
222SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
232SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
242SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
252SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
262SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
272SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
282SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
292SN/A#
302SN/A
312SN/AImport('*')
322SN/A
332SN/A#
342SN/A# Currently the ruby testser relies on Ruby specific objects (SubBlock, etc.)
352SN/A# When this dependency is removed, the ruby tester should be compiled
362SN/A# independently from Ruby
372SN/A#
382SN/Aif env['PROTOCOL'] == 'None':
392SN/A    Return()
402SN/A
412665Ssaidi@eecs.umich.eduSimObject('RubyDirectedTester.py')
422665Ssaidi@eecs.umich.edu
432SN/ASource('RubyDirectedTester.cc')
442SN/ASource('DirectedGenerator.cc')
451798SN/ASource('SeriesRequestGenerator.cc')
461798SN/ASource('InvalidateGenerator.cc')
472SN/A
489983Sstever@gmail.comDebugFlag('DirectedTest')
499952Sdam.sunwoo@arm.com