forked from Github_Repos/cvw
Merge pull request #264 from davidharrishmc/dev
Added -fp flag to run arch64d/f tests in coverage
This commit is contained in:
commit
ffa686a605
@ -28,6 +28,7 @@ regressionDir = os.path.dirname(os.path.abspath(__file__))
|
|||||||
os.chdir(regressionDir)
|
os.chdir(regressionDir)
|
||||||
|
|
||||||
coverage = '-coverage' in sys.argv
|
coverage = '-coverage' in sys.argv
|
||||||
|
fp = '-fp' in sys.argv
|
||||||
|
|
||||||
TestCase = namedtuple("TestCase", ['name', 'variant', 'cmd', 'grepstr'])
|
TestCase = namedtuple("TestCase", ['name', 'variant', 'cmd', 'grepstr'])
|
||||||
# name: the name of this test configuration (used in printing human-readable
|
# name: the name of this test configuration (used in printing human-readable
|
||||||
@ -140,6 +141,9 @@ if (coverage): # delete all but 64gc tests when running coverage
|
|||||||
"arch64zi", "wally64a", "wally64periph", "wally64priv",
|
"arch64zi", "wally64a", "wally64periph", "wally64priv",
|
||||||
"arch64zba", "arch64zbb", "arch64zbc", "arch64zbs",
|
"arch64zba", "arch64zbb", "arch64zbc", "arch64zbs",
|
||||||
"imperas64f", "imperas64d", "imperas64c", "imperas64i"]
|
"imperas64f", "imperas64d", "imperas64c", "imperas64i"]
|
||||||
|
if (fp):
|
||||||
|
tests64gc.append("arch64f")
|
||||||
|
tests64gc.append("arch64d")
|
||||||
coverStr = '-coverage'
|
coverStr = '-coverage'
|
||||||
else:
|
else:
|
||||||
coverStr = ''
|
coverStr = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user