We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f5894e commit a19077eCopy full SHA for a19077e
Sources/Commands/Utilities/TestingSupport.swift
@@ -102,6 +102,7 @@ enum TestingSupport {
102
sanitizers: sanitizers
103
)
104
let args = [path.description, "--dump-tests-json"]
105
+ print(env)
106
let data = try Process.checkNonZeroExit(arguments: args, environment: env)
107
#endif
108
// Parse json and return TestSuites.
@@ -136,7 +137,9 @@ enum TestingSupport {
136
137
#elseif os(Linux)
138
// Pass this explicitly on Linux because XCTest started requiring it, rdar://103054033
139
env["LD_LIBRARY_PATH"] = "/usr/lib/swift/linux"
140
+ env["LD_DEBUG"] = "all"
141
142
+ print("env before return: \(env)")
143
return env
144
#else
145
// Fast path when no sanitizers are enabled.
0 commit comments