From 486324ecabdc328eaf3d95d47bb1ad3a62485286 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 10 Oct 2020 18:19:48 -0400 Subject: [PATCH] This test isn't actually 65816-compatible. --- OSBindings/Mac/Clock SignalTests/KlausDormannTests.swift | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/OSBindings/Mac/Clock SignalTests/KlausDormannTests.swift b/OSBindings/Mac/Clock SignalTests/KlausDormannTests.swift index bf22e17eb..a4d577473 100644 --- a/OSBindings/Mac/Clock SignalTests/KlausDormannTests.swift +++ b/OSBindings/Mac/Clock SignalTests/KlausDormannTests.swift @@ -134,8 +134,5 @@ class KlausDormannTests: XCTestCase { runTest65C02(processor: .processor65C02) } - /// Runs Klaus Dormann's 65C02 tests on a 65816. - func test65816As65C02() { - runTest65C02(processor: .processor65816) - } + /* Dormann's 65C02 tests aren't applicable to the 65816; e.g. they test BBR/BBS, which the 65816 doesn't implement. */ }