From 1ca771840bac255e28cc424443bd002caaf1630a Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Sun, 9 Jan 2022 03:53:50 +0100 Subject: [PATCH] kotlin 1.6.10 --- .idea/gradle.xml | 4 +--- .idea/ksim65.iml | 12 ----------- .idea/modules.xml | 8 -------- build.gradle.kts | 2 +- .../Test6502TestSuiteIllegalInstructions.kt | 20 +++++++++---------- 5 files changed, 12 insertions(+), 34 deletions(-) delete mode 100644 .idea/ksim65.iml delete mode 100644 .idea/modules.xml diff --git a/.idea/gradle.xml b/.idea/gradle.xml index 6c402ee..a5be585 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -9,14 +9,12 @@ - diff --git a/.idea/ksim65.iml b/.idea/ksim65.iml deleted file mode 100644 index 10dfc58..0000000 --- a/.idea/ksim65.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 30da18e..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 58ea8d0..b0b8b1c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ import kotlin.math.max plugins { // Apply the Kotlin JVM plugin to add support for Kotlin on the JVM. - kotlin("jvm") version "1.5.30" + kotlin("jvm") version "1.6.10" `maven-publish` application java diff --git a/src/test/kotlin/Test6502TestSuiteIllegalInstructions.kt b/src/test/kotlin/Test6502TestSuiteIllegalInstructions.kt index 10a08f8..bad1c4b 100644 --- a/src/test/kotlin/Test6502TestSuiteIllegalInstructions.kt +++ b/src/test/kotlin/Test6502TestSuiteIllegalInstructions.kt @@ -281,61 +281,61 @@ class Test6502TestSuiteIllegalInstructions: FunctionalTestsBase() { } @Test - @Disabled("this illegal instruction is probablyt not implemented correctly yet") + @Disabled("this illegal instruction is probably not implemented correctly yet") fun testAlrb() { runTest("alrb") // TODO fix? } @Test - @Disabled("this illegal instruction is probablyt not implemented correctly yet") + @Disabled("this illegal instruction is probably not implemented correctly yet") fun testAneb() { runTest("aneb") // TODO fix? } @Test - @Disabled("this illegal instruction is probablyt not implemented correctly yet") + @Disabled("this illegal instruction is probably not implemented correctly yet") fun testArrb() { runTest("arrb") // TODO fix? } @Test - @Disabled("this illegal instruction is probablyt not implemented correctly yet") + @Disabled("this illegal instruction is probably not implemented correctly yet") fun testLxab() { runTest("lxab") // TODO fix something? } @Test - @Disabled("this illegal instruction is probablyt not implemented correctly yet") + @Disabled("this illegal instruction is probably not implemented correctly yet") fun testSbxb() { runTest("sbxb") // TODO fix? } @Test - @Disabled("this illegal instruction is probablyt not implemented correctly yet") + @Disabled("this illegal instruction is probably not implemented correctly yet") fun testShaay() { runTest("shaay") // TODO fix? } @Test - @Disabled("this illegal instruction is probablyt not implemented correctly yet") + @Disabled("this illegal instruction is probably not implemented correctly yet") fun testShaiy() { runTest("shaiy") // TODO fix? } @Test - @Disabled("this illegal instruction is probablyt not implemented correctly yet") + @Disabled("this illegal instruction is probably not implemented correctly yet") fun testShsay() { runTest("shsay") // TODO fix? } @Test - @Disabled("this illegal instruction is probablyt not implemented correctly yet") + @Disabled("this illegal instruction is probably not implemented correctly yet") fun testShxay() { runTest("shxay") // TODO fix? } @Test - @Disabled("this illegal instruction is probablyt not implemented correctly yet") + @Disabled("this illegal instruction is probably not implemented correctly yet") fun testShyax() { runTest("shyax") // TODO fix? }