test.py revision 13677:948898e8b17e
12SN/A# Copyright (c) 2018 The Regents of the University of California.
21762SN/A# All rights reserved.
32SN/A#
42SN/A# Redistribution and use in source and binary forms, with or without
52SN/A# modification, are permitted provided that the following conditions are
62SN/A# met: redistributions of source code must retain the above copyright
72SN/A# notice, this list of conditions and the following disclaimer;
82SN/A# redistributions in binary form must reproduce the above copyright
92SN/A# notice, this list of conditions and the following disclaimer in the
102SN/A# documentation and/or other materials provided with the distribution;
112SN/A# neither the name of the copyright holders nor the names of its
122SN/A# contributors may be used to endorse or promote products derived from
132SN/A# this software without specific prior written permission.
142SN/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#
272665Ssaidi@eecs.umich.edu# Authors: Jason Lowe-Power
282665Ssaidi@eecs.umich.edu
292SN/A'''
302SN/ATest file for simple memory test
312SN/ATODO: Add stats checking
322SN/A'''
332SN/Afrom testlib import *
342SN/A
3556SN/Agem5_verify_config(
361919SN/A    name='simple_mem_default',
3712334Sgabeblack@google.com    verifiers=(), # No need for verfiers this will return non-zero on fail
3856SN/A    config=joinpath(getcwd(), 'simple-run.py'),
392SN/A    config_args = [],
401919SN/A    valid_isas=(constants.null_tag,),
411919SN/A)
422SN/A
432SN/Asimple_mem_params = [
442SN/A        ('inf-bandwidth', {'bandwidth': '0GB/s'}),
451919SN/A        ('low-latency', {'latency': '1ns'}),
461919SN/A        ('high-latency', {'latency': '1us'}),
472SN/A        ('low-bandwidth', {'bandwidth': '1MB/s'}),
481919SN/A        ('high-var', {'latency_var': '100ns'})
491919SN/A        ]
501919SN/A
512SN/A
522SN/Afor name, params in simple_mem_params:
531919SN/A    args = ['--' + key + '=' + val for key,val in params.iteritems()]
541919SN/A
552SN/A    gem5_verify_config(
561919SN/A        name='simple_mem_' + name,
571919SN/A        verifiers=(), # No need for verfiers this will return non-zero on fail
581919SN/A        config=joinpath(getcwd(), 'simple-run.py'),
591919SN/A        config_args = args,
601919SN/A        valid_isas=(constants.null_tag,),
611919SN/A        ) # This tests for validity as well as performance
621919SN/A
631919SN/Agem5_verify_config(
641919SN/A    name='memtest',
651919SN/A    verifiers=(), # No need for verfiers this will return non-zero on fail
662SN/A    config=joinpath(getcwd(), 'memtest-run.py'),
671919SN/A    config_args = [],
681919SN/A    valid_isas=(constants.null_tag,),
691919SN/A)
701919SN/A