From 8176ee9b5dda38504f0048cfe6df95fc13df3ec4 Mon Sep 17 00:00:00 2001 From: Vitaly Buka Date: Sat, 20 Aug 2016 17:22:36 +0000 Subject: [PATCH] [asan] Rename asan-instrument-allocas -> asan-instrument-dynamic-allocas Summary: Depends on D23707. Subscribers: kubabrecka Differential Revision: https://reviews.llvm.org/D23709 llvm-svn: 279377 --- compiler-rt/test/asan/TestCases/alloca_big_alignment.cc | 2 +- compiler-rt/test/asan/TestCases/alloca_detect_custom_size_.cc | 2 +- compiler-rt/test/asan/TestCases/alloca_instruments_all_paddings.cc | 4 ++-- compiler-rt/test/asan/TestCases/alloca_loop_unpoisoning.cc | 2 +- compiler-rt/test/asan/TestCases/alloca_overflow_partial.cc | 2 +- compiler-rt/test/asan/TestCases/alloca_overflow_right.cc | 2 +- compiler-rt/test/asan/TestCases/alloca_safe_access.cc | 2 +- compiler-rt/test/asan/TestCases/alloca_underflow_left.cc | 2 +- compiler-rt/test/asan/TestCases/alloca_vla_interact.cc | 2 +- compiler-rt/test/asan/TestCases/vla_chrome_testcase.cc | 2 +- compiler-rt/test/asan/TestCases/vla_condition_overflow.cc | 2 +- compiler-rt/test/asan/TestCases/vla_loop_overfow.cc | 2 +- 12 files changed, 13 insertions(+), 13 deletions(-) diff --git a/compiler-rt/test/asan/TestCases/alloca_big_alignment.cc b/compiler-rt/test/asan/TestCases/alloca_big_alignment.cc index 2ede3f9..0b49424 100644 --- a/compiler-rt/test/asan/TestCases/alloca_big_alignment.cc +++ b/compiler-rt/test/asan/TestCases/alloca_big_alignment.cc @@ -1,4 +1,4 @@ -// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t +// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t // RUN: not %run %t 2>&1 | FileCheck %s // diff --git a/compiler-rt/test/asan/TestCases/alloca_detect_custom_size_.cc b/compiler-rt/test/asan/TestCases/alloca_detect_custom_size_.cc index 2b0f573..271359b 100644 --- a/compiler-rt/test/asan/TestCases/alloca_detect_custom_size_.cc +++ b/compiler-rt/test/asan/TestCases/alloca_detect_custom_size_.cc @@ -1,4 +1,4 @@ -// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t +// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t // RUN: not %run %t 2>&1 | FileCheck %s // diff --git a/compiler-rt/test/asan/TestCases/alloca_instruments_all_paddings.cc b/compiler-rt/test/asan/TestCases/alloca_instruments_all_paddings.cc index e2c7faf..5bf6f80 100644 --- a/compiler-rt/test/asan/TestCases/alloca_instruments_all_paddings.cc +++ b/compiler-rt/test/asan/TestCases/alloca_instruments_all_paddings.cc @@ -1,5 +1,5 @@ -// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t -// RUN: %clangxx_asan -O3 -mllvm -asan-instrument-allocas %s -o %t +// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t +// RUN: %clangxx_asan -O3 -mllvm -asan-instrument-dynamic-allocas %s -o %t // RUN: %run %t 2>&1 // diff --git a/compiler-rt/test/asan/TestCases/alloca_loop_unpoisoning.cc b/compiler-rt/test/asan/TestCases/alloca_loop_unpoisoning.cc index 5392792..1efada1 100644 --- a/compiler-rt/test/asan/TestCases/alloca_loop_unpoisoning.cc +++ b/compiler-rt/test/asan/TestCases/alloca_loop_unpoisoning.cc @@ -1,4 +1,4 @@ -// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t +// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t // RUN: %run %t 2>&1 // // REQUIRES: stable-runtime diff --git a/compiler-rt/test/asan/TestCases/alloca_overflow_partial.cc b/compiler-rt/test/asan/TestCases/alloca_overflow_partial.cc index 590f354..afac40c 100644 --- a/compiler-rt/test/asan/TestCases/alloca_overflow_partial.cc +++ b/compiler-rt/test/asan/TestCases/alloca_overflow_partial.cc @@ -1,4 +1,4 @@ -// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t +// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t // RUN: not %run %t 2>&1 | FileCheck %s // diff --git a/compiler-rt/test/asan/TestCases/alloca_overflow_right.cc b/compiler-rt/test/asan/TestCases/alloca_overflow_right.cc index caec846..615dd14 100644 --- a/compiler-rt/test/asan/TestCases/alloca_overflow_right.cc +++ b/compiler-rt/test/asan/TestCases/alloca_overflow_right.cc @@ -1,4 +1,4 @@ -// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t +// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t // RUN: not %run %t 2>&1 | FileCheck %s // diff --git a/compiler-rt/test/asan/TestCases/alloca_safe_access.cc b/compiler-rt/test/asan/TestCases/alloca_safe_access.cc index 240454f..1cd0dad 100644 --- a/compiler-rt/test/asan/TestCases/alloca_safe_access.cc +++ b/compiler-rt/test/asan/TestCases/alloca_safe_access.cc @@ -1,4 +1,4 @@ -// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t +// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t // RUN: %run %t 2>&1 // diff --git a/compiler-rt/test/asan/TestCases/alloca_underflow_left.cc b/compiler-rt/test/asan/TestCases/alloca_underflow_left.cc index 6e7061f..8720e8cc 100644 --- a/compiler-rt/test/asan/TestCases/alloca_underflow_left.cc +++ b/compiler-rt/test/asan/TestCases/alloca_underflow_left.cc @@ -1,4 +1,4 @@ -// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t +// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t // RUN: not %run %t 2>&1 | FileCheck %s // diff --git a/compiler-rt/test/asan/TestCases/alloca_vla_interact.cc b/compiler-rt/test/asan/TestCases/alloca_vla_interact.cc index 3873c3f..4717c9d 100644 --- a/compiler-rt/test/asan/TestCases/alloca_vla_interact.cc +++ b/compiler-rt/test/asan/TestCases/alloca_vla_interact.cc @@ -1,4 +1,4 @@ -// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t +// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t // RUN: %run %t 2>&1 // // REQUIRES: stable-runtime diff --git a/compiler-rt/test/asan/TestCases/vla_chrome_testcase.cc b/compiler-rt/test/asan/TestCases/vla_chrome_testcase.cc index 8ee0401..a877180 100644 --- a/compiler-rt/test/asan/TestCases/vla_chrome_testcase.cc +++ b/compiler-rt/test/asan/TestCases/vla_chrome_testcase.cc @@ -1,4 +1,4 @@ -// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t +// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t // RUN: not %run %t 2>&1 | FileCheck %s // diff --git a/compiler-rt/test/asan/TestCases/vla_condition_overflow.cc b/compiler-rt/test/asan/TestCases/vla_condition_overflow.cc index 17f28d8..cf42d79 100644 --- a/compiler-rt/test/asan/TestCases/vla_condition_overflow.cc +++ b/compiler-rt/test/asan/TestCases/vla_condition_overflow.cc @@ -1,4 +1,4 @@ -// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t +// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t // RUN: not %run %t 2>&1 | FileCheck %s // // REQUIRES: stable-runtime diff --git a/compiler-rt/test/asan/TestCases/vla_loop_overfow.cc b/compiler-rt/test/asan/TestCases/vla_loop_overfow.cc index 4f20c8d..b6a5864 100644 --- a/compiler-rt/test/asan/TestCases/vla_loop_overfow.cc +++ b/compiler-rt/test/asan/TestCases/vla_loop_overfow.cc @@ -1,4 +1,4 @@ -// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t +// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t // RUN: not %run %t 2>&1 | FileCheck %s // // REQUIRES: stable-runtime -- 2.7.4