1 |
5 |
ghutchis |
#!/usr/bin/env python
|
2 |
|
|
# Copyright (c) 2004 Guy Hutchison (ghutchis@opencores.org)
|
3 |
|
|
#
|
4 |
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
5 |
|
|
# copy of this software and associated documentation files (the "Software"),
|
6 |
|
|
# to deal in the Software without restriction, including without limitation
|
7 |
|
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
8 |
|
|
# and/or sell copies of the Software, and to permit persons to whom the
|
9 |
|
|
# Software is furnished to do so, subject to the following conditions:
|
10 |
|
|
#
|
11 |
|
|
# The above copyright notice and this permission notice shall be included
|
12 |
|
|
# in all copies or substantial portions of the Software.
|
13 |
|
|
#
|
14 |
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15 |
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16 |
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
17 |
|
|
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
18 |
|
|
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
19 |
|
|
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
20 |
|
|
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21 |
|
|
|
22 |
|
|
import sys, os
|
23 |
|
|
|
24 |
|
|
testname = sys.argv[1]
|
25 |
89 |
ghutchis |
simulator = "vcs -full64 +v2k -R -I "
|
26 |
5 |
ghutchis |
|
27 |
|
|
filelist = " -f env/tb.vf"
|
28 |
|
|
testdef = " +incdir+env -l logs/%s.log +define+DUMPFILE_NAME=\\\"logs/%s.dump\\\" +define+ROM_FILE=\\\"tests/%s.vmem\\\" +define+RAM_FILE=\\\"tests/%s.vmem\\\"" % (testname, testname, testname+"_rom", testname+"_ram")
|
29 |
|
|
|
30 |
|
|
os.chdir ("tests")
|
31 |
|
|
os.system ("make %s.vmem" % testname)
|
32 |
|
|
os.chdir ("..")
|
33 |
|
|
|
34 |
|
|
command = simulator + filelist + testdef
|
35 |
|
|
|
36 |
89 |
ghutchis |
# check for and create logs directory
|
37 |
|
|
if (not os.path.exists ('logs')):
|
38 |
|
|
os.mkdir ('logs')
|
39 |
|
|
|
40 |
5 |
ghutchis |
print "command:",command
|
41 |
|
|
os.system (command)
|
42 |
|
|
|