Skip to content

Commit

Permalink
Add Target tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yonihemi committed Apr 26, 2024
1 parent ee3623d commit 9b84c3b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Tests/LLVMTests/TargetTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import SwiftyLLVM
import XCTest

final class TargetTests: XCTestCase {

func testHostTargetName() throws {
let h = try Target.host()
let n = h.name
XCTAssertFalse(n.isEmpty)
}

}

0 comments on commit 9b84c3b

Please sign in to comment.