From dad1d7744e1a50d447e5e0fe32c01633c7e0c9af Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 8 Sep 2022 16:41:10 -0400 Subject: [PATCH] Disable test generation. --- OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm b/OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm index 6802f971d..6d0655f2e 100644 --- a/OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm +++ b/OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm @@ -393,7 +393,8 @@ void print_transactions(FILE *target, const std::vector &transactio @implementation M68000OldVsNewTests -- (void)testGenerate { +//- (void)testGenerate { +- (void)generate { srand(68000); InstructionSet::M68k::Predecoder decoder; RandomStore random_store; @@ -555,7 +556,7 @@ void print_transactions(FILE *target, const std::vector &transactio int testsRun = 0; std::set failing_operations; for(int c = 0; c < 65536; c++) { -// printf("%04x\n", c); + printf("%04x\n", c); // Test only defined opcodes that aren't STOP (which will never teminate). const auto instruction = decoder.decode(uint16_t(c));