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 af4c40bCopy full SHA for af4c40b
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,6 +137,7 @@ 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
return env
143
#else
0 commit comments