Renamed targets. Added linux_ prefix

mips32   -> linux_mips32
mipsel32 -> linux_mipsel32
This commit is contained in:
Sergey Bogolepov
2017-09-25 19:53:51 +07:00
committed by ilmat192
parent b7978c3a1f
commit 0fb788d580
7 changed files with 57 additions and 57 deletions
+6 -6
View File
@@ -2085,8 +2085,8 @@ kotlinNativeInterop {
task interop0(type: RunInteropKonanTest) {
disabled = (project.testTarget == 'wasm32') || // No interop for wasm yet.
(project.testTarget == 'mips32') || // st_uid of '/' is not equal to 0 when using qemu
(project.testTarget == 'mipsel32')
(project.testTarget == 'linux_mips32') || // st_uid of '/' is not equal to 0 when using qemu
(project.testTarget == 'linux_mipsel32')
goldValue = "0\n0\n"
source = "interop/basics/0.kt"
interop = 'sysstat'
@@ -2113,8 +2113,8 @@ task interop3(type: RunInteropKonanTest) {
// There are plans to provide a solution and turn this
// test back on.
disabled = (project.testTarget == 'raspberrypi') ||
(project.testTarget == 'mips32') ||
(project.testTarget == 'mipsel32') ||
(project.testTarget == 'linux_mips32') ||
(project.testTarget == 'linux_mipsel32') ||
(project.testTarget == 'wasm32') // No interop for wasm yet.
goldValue = "8 9 12 13 14 \n"
source = "interop/basics/3.kt"
@@ -2130,14 +2130,14 @@ task interop4(type: RunInteropKonanTest) {
task interop_bitfields(type: RunInteropKonanTest) {
disabled = (project.testTarget == 'wasm32') // No interop for wasm yet.
expectedFail = (project.testTarget == 'mips32') // fails because of big-endiannes
expectedFail = (project.testTarget == 'linux_mips32') // fails because of big-endiannes
source = "interop/basics/bf.kt"
interop = 'bitfields'
}
task interop_funptr(type: RunInteropKonanTest) {
disabled = (project.testTarget == 'wasm32') // No interop for wasm yet.
expectedFail = (project.testTarget == 'mips32') // fails because of big-endiannes
expectedFail = (project.testTarget == 'linux_mips32') // fails because of big-endiannes
goldValue = "42\n17\n1\n0\n"
source = "interop/basics/funptr.kt"
interop = 'cfunptr'