Skip to content

Commit b7b7923

Browse files
committed
Disable for Android same tests, which disabled for Linux
1 parent 83c0c98 commit b7b7923

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Tests/SQLiteTests/Core/ConnectionTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ class ConnectionTests: SQLiteTestCase {
374374
}
375375

376376
// https://github.com/stephencelis/SQLite.swift/issues/1071
377-
#if !os(Linux)
377+
#if !(os(Linux) || os(Android))
378378
func test_createFunction_withArrayArguments() throws {
379379
db.createFunction("hello") { $0[0].map { "Hello, \($0)!" } }
380380

Tests/SQLiteTests/Typed/CustomAggregationTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import SQLite3
1414
#endif
1515

1616
// https://github.com/stephencelis/SQLite.swift/issues/1071
17-
#if !os(Linux)
17+
#if !(os(Linux) || os(Android))
1818

1919
class CustomAggregationTests: SQLiteTestCase {
2020
override func setUpWithError() throws {

Tests/SQLiteTests/Typed/CustomFunctionsTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import XCTest
22
import SQLite
33

44
// https://github.com/stephencelis/SQLite.swift/issues/1071
5-
#if !os(Linux)
5+
#if !(os(Linux) || os(Android))
66

77
class CustomFunctionNoArgsTests: SQLiteTestCase {
88
typealias FunctionNoOptional = () -> SQLite.Expression<String>

0 commit comments

Comments
 (0)