Skip to content

Commit b72e57f

Browse files
committed
On unknown CPUs, don't run the MSR consistency test in the full testsuite
On unknown CPUs without a CPU-specific MSR blacklist, this test produces too many false positives. Leave it available to run specifically, but don't run it as part of the full "run all tests" testsuite.
1 parent e0ca98b commit b72e57f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/cpu_gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def init():
3939
pass
4040

4141
def register_tests():
42-
testsuite.add_test("MSR consistency test", msr_test)
42+
testsuite.add_test("MSR consistency test", msr_test, runall=False)
4343

4444
def msr_test():
4545
testmsr.rdmsr_consistent(msr_blacklist, msr_masklist)

0 commit comments

Comments
 (0)