mirror of
				https://github.com/openhwgroup/cvw
				synced 2025-02-11 06:05:49 +00:00 
			
		
		
		
	Merge pull request #951 from davidharrishmc/dev
Removed waiver, added license headers, run functional coverage on all cases
This commit is contained in:
		
						commit
						b416bb2862
					
				@ -1,6 +1,7 @@
 | 
				
			|||||||
#!/bin/bash
 | 
					#!/bin/bash
 | 
				
			||||||
# check for warnings in Verilog code
 | 
					# check for warnings in Verilog code
 | 
				
			||||||
# The verilator lint tool is faster and better than Questa so it is best to run this first.
 | 
					# The verilator lint tool is faster and better than Questa so it is best to run this first.
 | 
				
			||||||
 | 
					# SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export PATH=$PATH:/usr/local/bin/
 | 
					export PATH=$PATH:/usr/local/bin/
 | 
				
			||||||
verilator=`which verilator`
 | 
					verilator=`which verilator`
 | 
				
			||||||
 | 
				
			|||||||
@ -3,7 +3,8 @@
 | 
				
			|||||||
#
 | 
					#
 | 
				
			||||||
# regression-wally
 | 
					# regression-wally
 | 
				
			||||||
# David_Harris@Hmc.edu 25 January 2021
 | 
					# David_Harris@Hmc.edu 25 January 2021
 | 
				
			||||||
# Modified by Jarred Allen <jaallen@g.hmc.edu>
 | 
					# Modified by Jarred Allen <jaallen@g.hmc.edu> and many others
 | 
				
			||||||
 | 
					# SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# Run a regression with multiple configurations in parallel and exit with
 | 
					# Run a regression with multiple configurations in parallel and exit with
 | 
				
			||||||
# non-zero status code if an error happened, as well as printing human-readable
 | 
					# non-zero status code if an error happened, as well as printing human-readable
 | 
				
			||||||
@ -233,7 +234,6 @@ bpredtests = [
 | 
				
			|||||||
lockstepwaivers = [
 | 
					lockstepwaivers = [
 | 
				
			||||||
    "WALLY-q-01.S_ref.elf",     # Q extension is not supported by ImperasDV
 | 
					    "WALLY-q-01.S_ref.elf",     # Q extension is not supported by ImperasDV
 | 
				
			||||||
    "WALLY-cbom-01.S_ref.elf" #,  # cbom extension is not supported by ImperasDV because there is no cache model in ImperasDV
 | 
					    "WALLY-cbom-01.S_ref.elf" #,  # cbom extension is not supported by ImperasDV because there is no cache model in ImperasDV
 | 
				
			||||||
#    "coverage_ieu.elf"          # Issue 881: ImperasDV misinterprets 0x6BF05013 as a grevi rather than an illegal instruction
 | 
					 | 
				
			||||||
]
 | 
					]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##################################
 | 
					##################################
 | 
				
			||||||
@ -411,7 +411,7 @@ if (args.ccov):  # only run RV64GC tests on Questa in code coverage mode
 | 
				
			|||||||
    if (args.fp):
 | 
					    if (args.fp):
 | 
				
			||||||
        addTests(tests64gc_fp, coveragesim)
 | 
					        addTests(tests64gc_fp, coveragesim)
 | 
				
			||||||
elif (args.fcov):  # only run RV64GC tests on Questa in lockstep in functional coverage mode
 | 
					elif (args.fcov):  # only run RV64GC tests on Questa in lockstep in functional coverage mode
 | 
				
			||||||
    addLockstepTestsByDir(WALLY+"/addins/cvw-arch-verif/tests/rv32/I", "rv32gc", coveragesim)
 | 
					    addLockstepTestsByDir(WALLY+"/addins/cvw-arch-verif/tests/rv32/", "rv32gc", coveragesim)
 | 
				
			||||||
#    addLockstepTestsByDir(WALLY+"/addins/cvw-arch-verif/tests/rv64/I", "rv64gc", coveragesim)
 | 
					#    addLockstepTestsByDir(WALLY+"/addins/cvw-arch-verif/tests/rv64/I", "rv64gc", coveragesim)
 | 
				
			||||||
elif (args.fcovrvvi):  # only run RV64GC tests on Questa in rvvi coverage mode
 | 
					elif (args.fcovrvvi):  # only run RV64GC tests on Questa in rvvi coverage mode
 | 
				
			||||||
    addTests(tests64gc_nofp, coveragesim)
 | 
					    addTests(tests64gc_nofp, coveragesim)
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user