From 43c0dea1bd9f230d5ec61307c5ee996881401763 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 10 Jun 2022 16:12:54 -0400 Subject: [PATCH] With the difference in RESET times now factored out, test timing too. --- OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm b/OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm index 02b52b8a4..1a5ce3e65 100644 --- a/OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm +++ b/OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm @@ -60,7 +60,7 @@ struct Transaction { bool read = false; bool operator !=(const Transaction &rhs) const { -// if(timestamp != rhs.timestamp) return true; + if(timestamp != rhs.timestamp) return true; // if(function_code != rhs.function_code) return true; if(address != rhs.address) return true; if(value != rhs.value) return true; @@ -255,7 +255,7 @@ template struct Tester { // Use a fixed seed to guarantee continuity across repeated runs. srand(68000); - std::set test_set = { + std::set test_set;/* = { // InstructionSet::M68k::Operation::ABCD, // Old implementation doesn't match flamewing tests, sometimes produces incorrect results. // InstructionSet::M68k::Operation::SBCD, // Old implementation doesn't match flamewing tests, sometimes produces incorrect results. // InstructionSet::M68k::Operation::MOVEb, @@ -268,7 +268,7 @@ template struct Tester { // InstructionSet::M68k::Operation::DIVU, // InstructionSet::M68k::Operation::DIVS, // InstructionSet::M68k::Operation::TAS, // Old implementation just doesn't match published cycle counts. - }; + };*/ std::set failing_operations; for(int c = 0; c < 65536; c++) {