Skip to content

Commit de4edb1

Browse files
Tests: Hard-skip spectests on Android
1 parent fe7c700 commit de4edb1

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Tests/WasmKitTests/FuzzTranslatorRegressionTests.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
}
2424
}
2525

26+
#if !os(Android)
2627
@Test(
2728
.disabled("unable to run fuzz translator regression tests on Android due to missing files on emulator", platforms: [.android]),
2829
arguments: try failCases()
@@ -35,6 +36,7 @@
3536
// Skip exceptions without crash
3637
}
3738
}
39+
#endif
3840
}
3941

4042
#endif

Tests/WasmKitTests/SpectestTests.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
]
2020
}
2121

22+
#if !os(Android)
2223
@Test(
2324
.disabled("unable to run spectest on Android due to missing files on emulator", platforms: [.android]),
2425
arguments: try SpectestDiscovery(path: SpectestTests.testPaths).discover()
@@ -40,5 +41,6 @@
4041
let runner = try SpectestRunner(configuration: defaultConfig)
4142
try runner.run(test: test, reporter: NullSpectestProgressReporter())
4243
}
44+
#endif
4345
}
4446
#endif

0 commit comments

Comments
 (0)