tests: Removed SPARC Insttests from .testignore
[gem5.git] / tests / gem5 / insttest_se / test.py
1 # Copyright (c) 2020 The Regents of the University of California
2 # All Rights Reserved.
3 #
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met: redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer;
8 # redistributions in binary form must reproduce the above copyright
9 # notice, this list of conditions and the following disclaimer in the
10 # documentation and/or other materials provided with the distribution;
11 # neither the name of the copyright holders nor the names of its
12 # contributors may be used to endorse or promote products derived from
13 # this software without specific prior written permission.
14 #
15 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #
27 # Authors: Bobby R. Bruce
28
29 '''
30 Test file for the insttest binary running on the SPARC ISA
31 '''
32 from testlib import *
33
34 test_progs = {
35 'sparc': ('insttest',)
36 }
37
38 cpu_types = {
39 'sparc' : ('AtomicSimpleCPU', 'TimingSimpleCPU')
40 }
41
42 supported_os = {
43 'sparc' : ('linux',)
44 }
45
46 if config.bin_path:
47 base_path = config.bin_path
48 else:
49 base_path = joinpath(absdirpath(__file__), '..', 'test-progs')
50
51 urlbase = config.resource_url + '/test-progs/insttest/bin/'
52 for isa in test_progs:
53 for binary in test_progs[isa]:
54 for operating_s in supported_os[isa]:
55 import os
56 url = urlbase + isa + '/' + operating_s + '/' + binary
57 path = joinpath(base_path, isa, operating_s, binary)
58
59 try:
60 program = DownloadedProgram(url, path, binary)
61 except:
62 continue
63
64 ref_path = joinpath(getcwd(), 'ref', isa, operating_s, binary)
65 verifiers = (
66 verifier.MatchStdoutNoPerf(joinpath(ref_path, 'simout')),
67 )
68
69 for cpu in cpu_types[isa]:
70
71 gem5_verify_config(
72 name='test-'+binary + '-' + operating_s + '-' + cpu,
73 fixtures=(program,),
74 verifiers=verifiers,
75 config=joinpath(config.base_dir, 'configs',
76 'example','se.py'),
77 config_args=['--cmd', joinpath(path, binary),
78 '--cpu-type', cpu, '--caches'],
79 valid_isas=(isa.upper(),),
80 )