[PATCH] D113211: [NFC][clang] Inclusive terms: replace uses of blacklist in clang/test/

Jan Korous via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Nov 15 13:56:04 PST 2021


jkorous accepted this revision.
jkorous added a comment.
This revision is now accepted and ready to land.

LGTM



================
Comment at: clang/test/CodeGen/address-safety-attr.cpp:9
 
-// RUN: echo "fun:*BlacklistedFunction*" > %t.func.blacklist
-// RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-darwin -disable-O0-optnone -emit-llvm -o - %s -include %t.extra-source.cpp -fsanitize=address -fsanitize-blacklist=%t.func.blacklist | FileCheck -check-prefix=BLFUNC %s
+// RUN: echo "fun:*IgnorelistedFunction*" > %t.func.ignorelist
+// RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-darwin -disable-O0-optnone -emit-llvm -o - %s -include %t.extra-source.cpp -fsanitize=address -fsanitize-ignorelist=%t.func.ignorelist | FileCheck -check-prefix=BLFUNC %s
----------------
jkorous wrote:
> Shouldn't we teach ASan about the new syntax of ignorelist as well `fun:*IgnorelistedFunction*`?
Nvm - that's just name of the test function below.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D113211/new/

https://reviews.llvm.org/D113211



More information about the cfe-commits mailing list