diff options
author | Kuba Mracek <mracek@apple.com> | 2017-04-28 05:50:46 +0000 |
---|---|---|
committer | Kuba Mracek <mracek@apple.com> | 2017-04-28 05:50:46 +0000 |
commit | 10c6ba06d4dd8d97d8e022cfcad836882f55ab85 (patch) | |
tree | f6f00d0a062d83442a7a3324352c4afb80ee0467 | |
parent | b08c567201ec91331237eeaae2414fbd87f85c3d (diff) | |
download | bcm5719-llvm-10c6ba06d4dd8d97d8e022cfcad836882f55ab85.tar.gz bcm5719-llvm-10c6ba06d4dd8d97d8e022cfcad836882f55ab85.zip |
Fix unset-insert-libraries-on-exec.cc to use "%env" to make it work in iOS simulator.
llvm-svn: 301622
-rw-r--r-- | compiler-rt/test/asan/TestCases/Darwin/unset-insert-libraries-on-exec.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/asan/TestCases/Darwin/unset-insert-libraries-on-exec.cc b/compiler-rt/test/asan/TestCases/Darwin/unset-insert-libraries-on-exec.cc index f8a330ad5fe..62cf853a543 100644 --- a/compiler-rt/test/asan/TestCases/Darwin/unset-insert-libraries-on-exec.cc +++ b/compiler-rt/test/asan/TestCases/Darwin/unset-insert-libraries-on-exec.cc @@ -10,7 +10,7 @@ // execl(). // RUN: %run %t %T/echo-env >/dev/null 2>&1 -// RUN: env DYLD_INSERT_LIBRARIES=%t-darwin-dummy-shared-lib-so.dylib \ +// RUN: %env DYLD_INSERT_LIBRARIES=%t-darwin-dummy-shared-lib-so.dylib \ // RUN: %run %t %T/echo-env 2>&1 | FileCheck %s || exit 1 #if !defined(SHARED_LIB) |