From 84cfbaa0a4b556e5a2e096bce4a1d0f6a9619376 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 13 May 2022 11:00:26 -0400 Subject: [PATCH] Remove manual test count, now that all are being performed. --- OSBindings/Mac/Clock SignalTests/68000flamewingTests.mm | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/OSBindings/Mac/Clock SignalTests/68000flamewingTests.mm b/OSBindings/Mac/Clock SignalTests/68000flamewingTests.mm index 5fef6eb97..a39177870 100644 --- a/OSBindings/Mac/Clock SignalTests/68000flamewingTests.mm +++ b/OSBindings/Mac/Clock SignalTests/68000flamewingTests.mm @@ -15,9 +15,7 @@ using namespace InstructionSet::M68k; @interface M68000flamewingTests : XCTestCase @end -@implementation M68000flamewingTests { - int _testsPerformed; -} +@implementation M68000flamewingTests - (Status)statusWithflamewingFlags:(int)flags { Status status; @@ -32,7 +30,6 @@ using namespace InstructionSet::M68k; const uint8_t result_flags = test[0]; const uint8_t result_value = test[1]; - ++_testsPerformed; NSString *const testName = [NSString stringWithFormat:@"%@ %02x, %02x [%c%c]", operation, source, dest, (flags & 2) ? 'X' : '-', (flags & 1) ? 'Z' : '-']; XCTAssertEqual(result, uint32_t(result_value), @"Wrong value received for %@", testName); @@ -101,8 +98,6 @@ using namespace InstructionSet::M68k; bytes += 2; } } - - NSLog(@"%d tests performed", _testsPerformed); } @end