Make tests work again on Darwin.
aosp/1609473 broke this by making originalEnv empty unless InitEnvironment() is called, which doesn't happen in tests. Bug: 181835672 Test: "m nothing" on Linux and Darwin. Change-Id: I33f9cce65a9151e620e1dddafb62d4c599ed2cac
This commit is contained in:
parent
ddebd2c82a
commit
deba72161c
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ func TestConfig(buildDir string, env map[string]string, bp string, fs map[string
|
|||
|
||||
// Copy the real PATH value to the test environment, it's needed by
|
||||
// NonHermeticHostSystemTool() used in x86_darwin_host.go
|
||||
envCopy["PATH"] = originalEnv["PATH"]
|
||||
envCopy["PATH"] = os.Getenv("PATH")
|
||||
|
||||
config := &config{
|
||||
productVariables: productVariables{
|
||||
|
|
Loading…
Reference in a new issue