From 176c8355cb4242d751e0f38a20bded23b1e167dd Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 21 May 2022 14:32:58 -0400 Subject: [PATCH] The tests in chk.json now pass. --- .../Mac/Clock SignalTests/68000ComparativeTests.mm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm b/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm index 8b3f1ec14..c598c0510 100644 --- a/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm +++ b/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm @@ -156,7 +156,7 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler { // To limit tests run to a subset of files and/or of tests, uncomment and fill in below. _fileSet = [NSSet setWithArray:@[ - @"chk.json", + @"divu_divs.json", // Below this line are passing tests. @"abcd_sbcd.json", @@ -165,7 +165,8 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler { @"addq_subq.json", @"addx_subx.json", @"bcc.json", - @"btst_bchg_bclr_bset.json", // + @"btst_bchg_bclr_bset.json", + @"chk.json", @"cmp.json", @"dbcc_scc.json", @"eor_and_or.json", @@ -177,8 +178,8 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler { @"nbcd.json", @"ext.json", @"swap.json", - ]]; // 18/32 = 56 % done, as far as the tests go. -// _testSet = [NSSet setWithArray:@[@"MOVEM 0067 (5)"]]; + ]]; // 19/32 = 59 % done, as far as the tests go. +// _testSet = [NSSet setWithArray:@[@"CHK 4eb9"]]; } - (void)testAll { @@ -193,7 +194,7 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler { // NSLog(@"Testing %@", url); [self testJSONAtURL:url]; } - + XCTAssert(_failures.count == 0); // Output a summary of failures, if any.