test.py revision 4199
12SN/A# Copyright (c) 2006-2007 The Regents of The University of Michigan
29235Sandreas.hansson@arm.com# All rights reserved.
39235Sandreas.hansson@arm.com#
49235Sandreas.hansson@arm.com# Redistribution and use in source and binary forms, with or without
59235Sandreas.hansson@arm.com# modification, are permitted provided that the following conditions are
69235Sandreas.hansson@arm.com# met: redistributions of source code must retain the above copyright
79235Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer;
89235Sandreas.hansson@arm.com# redistributions in binary form must reproduce the above copyright
99235Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer in the
109235Sandreas.hansson@arm.com# documentation and/or other materials provided with the distribution;
119235Sandreas.hansson@arm.com# neither the name of the copyright holders nor the names of its
129235Sandreas.hansson@arm.com# contributors may be used to endorse or promote products derived from
139235Sandreas.hansson@arm.com# this software without specific prior written permission.
141762SN/A#
152SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
162SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
172SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
182SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
192SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
202SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
212SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
222SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
232SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
242SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
252SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
262SN/A#
272SN/A# Authors: Korey Sewell
282SN/A
292SN/Am5.AddToPath('../configs/common')
302SN/Afrom cpu2000 import twolf
312SN/Aimport os
322SN/A
332SN/Aworkload = twolf('alpha', 'tru64', 'smred')
342SN/Aroot.system.cpu.workload = workload.makeLiveProcess()
352SN/Acwd = root.system.cpu.workload.cwd
362SN/A
372SN/A#Remove two files who's presence or absence affects execution
382SN/Asav_file = os.path.join(cwd, workload.input_set + '.sav')
392665SN/Asv2_file = os.path.join(cwd, workload.input_set + '.sv2')
402665SN/Atry:
412665SN/A    os.unlink(sav_file)
429235Sandreas.hansson@arm.comexcept:
432SN/A    print "Couldn't unlink ", sav_file
442SN/Atry:
459235Sandreas.hansson@arm.com    os.unlink(sv2_file)
469235Sandreas.hansson@arm.comexcept:
472SN/A    print "Couldn't unlink ", sv2_file
4810481Sandreas.hansson@arm.com