diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2015-01-15 15:00:49 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2015-01-15 15:00:49 +0000 |
commit | 1a1a7d0f305e13d04c06ab653c82ff79d912cf35 (patch) | |
tree | 1ab1587a00c45c7583791eac1b611095390e0056 | |
parent | fa1d9f4860c48e0e99e33989499d947ed6ffa78d (diff) | |
download | bcm5719-llvm-1a1a7d0f305e13d04c06ab653c82ff79d912cf35.tar.gz bcm5719-llvm-1a1a7d0f305e13d04c06ab653c82ff79d912cf35.zip |
[lsan] Fix a typo in a test.
llvm-svn: 226168
-rw-r--r-- | compiler-rt/test/lsan/TestCases/leak_check_at_exit.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/lsan/TestCases/leak_check_at_exit.cc b/compiler-rt/test/lsan/TestCases/leak_check_at_exit.cc index fe3f70e4000..6f1cd22cf68 100644 --- a/compiler-rt/test/lsan/TestCases/leak_check_at_exit.cc +++ b/compiler-rt/test/lsan/TestCases/leak_check_at_exit.cc @@ -4,7 +4,7 @@ // RUN: LSAN_OPTIONS=$LSAN_BASE not %run %t foo 2>&1 | FileCheck %s --check-prefix=CHECK-do // RUN: LSAN_OPTIONS=$LSAN_BASE not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-do // RUN: LSAN_OPTIONS=$LSAN_BASE:"leak_check_at_exit=0" not %run %t foo 2>&1 | FileCheck %s --check-prefix=CHECK-do -// RUN: LSAN_OPTIONS=%LSAN_BASE:"leak_check_at_exit=0" %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-dont +// RUN: LSAN_OPTIONS=$LSAN_BASE:"leak_check_at_exit=0" %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-dont #include <stdio.h> #include <stdlib.h> |