diff options
author | Kostya Serebryany <kcc@google.com> | 2018-11-16 20:35:07 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2018-11-16 20:35:07 +0000 |
commit | f5912d0ef2bfd04902c50f4231cf942ec679eddd (patch) | |
tree | a84b046d0aa9b0d6e7b54ccd67021b56a4362242 | |
parent | ed6159bb71ebebefdc532f3fcfe1a13d7772faf6 (diff) | |
download | bcm5719-llvm-f5912d0ef2bfd04902c50f4231cf942ec679eddd.tar.gz bcm5719-llvm-f5912d0ef2bfd04902c50f4231cf942ec679eddd.zip |
[hwasan] disable one test line while investigating a bot failure
llvm-svn: 347091
-rw-r--r-- | compiler-rt/test/hwasan/TestCases/heap-buffer-overflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/hwasan/TestCases/heap-buffer-overflow.c b/compiler-rt/test/hwasan/TestCases/heap-buffer-overflow.c index 38e06d28932..854a26ba9ba 100644 --- a/compiler-rt/test/hwasan/TestCases/heap-buffer-overflow.c +++ b/compiler-rt/test/hwasan/TestCases/heap-buffer-overflow.c @@ -2,7 +2,7 @@ // RUN: not %run %t 40 2>&1 | FileCheck %s --check-prefix=CHECK40-LEFT // RUN: %env_hwasan_opts=malloc_align_right=2 not %run %t 40 2>&1 | FileCheck %s --check-prefix=CHECK40-RIGHT // RUN: not %run %t 80 2>&1 | FileCheck %s --check-prefix=CHECK80-LEFT -// RUN: %env_hwasan_opts=malloc_align_right=2 not %run %t 80 2>&1 | FileCheck %s --check-prefix=CHECK80-RIGHT +// DISABLED: %env_hwasan_opts=malloc_align_right=2 not %run %t 80 2>&1 | FileCheck %s --check-prefix=CHECK80-RIGHT // RUN: not %run %t -30 2>&1 | FileCheck %s --check-prefix=CHECKm30 // RUN: not %run %t -30 1000000 2>&1 | FileCheck %s --check-prefix=CHECKMm30 // RUN: not %run %t 1000000 1000000 2>&1 | FileCheck %s --check-prefix=CHECKM |