Skip to content

Commit 83c0c98

Browse files
committed
Attempt to fix tests build for android
1 parent 98d83a2 commit 83c0c98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/SQLiteTests/Schema/SchemaDefinitionsTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ColumnDefinitionTests: XCTestCase {
3232
defaultValue: .numericLiteral("123.123"), references: nil))
3333
]
3434

35-
#if !os(Linux)
35+
#if !(os(Linux) || os(Android))
3636
override class var defaultTestSuite: XCTestSuite {
3737
let suite = XCTestSuite(forTestCaseClass: ColumnDefinitionTests.self)
3838

@@ -183,7 +183,7 @@ class IndexDefinitionTests: XCTestCase {
183183
"CREATE INDEX IF NOT EXISTS \"index_tests\" ON \"tests\" (\"test_column\")")
184184
]
185185

186-
#if !os(Linux)
186+
#if !(os(Linux) || os(Android))
187187
override class var defaultTestSuite: XCTestSuite {
188188
let suite = XCTestSuite(forTestCaseClass: IndexDefinitionTests.self)
189189

0 commit comments

Comments
 (0)