Skip to content

Commit

Permalink
Tests: add a missed case of Windows exclusion
Browse files Browse the repository at this point in the history
This mirrors the Linux and Android paths and excludes this test on
Windows.  With this change (and 1 workaround), we can fully execute the
test suite (though not yet pass it completely).
  • Loading branch information
compnerd committed Jun 15, 2023
1 parent 4c7dfab commit 88ed0ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/SwiftDocCTests/Utility/LMDBTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ final class SwiftLMDBTests: XCTestCase {
}

func testArrayOfInt() throws {
#if !os(Linux) && !os(Android)
#if !os(Linux) && !os(Android) && !os(Windows)
let database = try environment.openDatabase()

var array: [UInt32] = []
Expand Down

0 comments on commit 88ed0ba

Please sign in to comment.