kotlin 1.6.10

This commit is contained in:
Irmen de Jong 2022-01-09 03:53:50 +01:00
parent b17b72b6b5
commit 1ca771840b
5 changed files with 12 additions and 34 deletions

View File

@ -9,14 +9,12 @@
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleHome" value="/usr/share/java/gradle" />
<option name="gradleJvm" value="openjdk-11" />
<option name="gradleJvm" value="11" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
</set>
</option>
<option name="useAutoImport" value="true" />
<option name="useQualifiedModuleNames" value="true" />
</GradleProjectSettings>
</option>
</component>

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="ksim65" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="net.razorvine" external.system.module.version="1.9" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
<excludeFolder url="file://$MODULE_DIR$/build" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/ksim65.iml" filepath="$PROJECT_DIR$/.idea/ksim65.iml" />
</modules>
</component>
</project>

View File

@ -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

View File

@ -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?
}