From 95733df9afa9a9b53b453e2f6436e7f325677e64 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Fri, 21 Feb 2020 02:15:10 +0100 Subject: [PATCH] exclude c64 specific tests because of roms requirement --- src/test/kotlin/Test6502TestSuiteC64Specific.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/kotlin/Test6502TestSuiteC64Specific.kt b/src/test/kotlin/Test6502TestSuiteC64Specific.kt index 9164576..2482c0f 100644 --- a/src/test/kotlin/Test6502TestSuiteC64Specific.kt +++ b/src/test/kotlin/Test6502TestSuiteC64Specific.kt @@ -10,6 +10,7 @@ import razorvine.ksim65.components.Rom import kotlin.test.* @Execution(ExecutionMode.CONCURRENT) +@Disabled("requires the C-64 roms to be available - we don't ship them with this code") class Test6502TestSuiteC64Specific { val cpu: Cpu6502 = Cpu6502() @@ -19,7 +20,7 @@ class Test6502TestSuiteC64Specific { val kernalStubs = C64KernalStubs(ram) init { - val romsPath = determineRomPath() + val romsPath = determineRomPath() // this requires you to have the c64 roms somewhere available val chargenRom = Rom(0xd000, 0xdfff).also { val chargenData = romsPath.resolve("chargen").toFile().readBytes() it.load(chargenData)