Mitch Phillips 7b23552779 Fix-forward ASan on Windows.
D127911 deleted llvm.asan.globals. This had a side effect that we no
longer generated the `name` field for the `__asan_global` descriptor
from clang's decscription of the name, but the demangled name from the
LLVM IR. On Linux, this is the same as the clang-provided name. On
Windows, this includes the type, as the name in the IR is the mangled
name.

Attempt #1 to fix-forward the Windows bots by making the tests glob both
sides of the global name, thereby allowing types in the descriptor name.
2022-06-27 15:53:30 -07:00

18 lines
474 B
C++

// RUN: %clangxx_asan -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
namespace XXX {
class YYY {
public:
static char ZZZ[];
};
char YYY::ZZZ[] = "abc";
}
int main(int argc, char **argv) {
return (int)XXX::YYY::ZZZ[argc + 5]; // BOOM
// CHECK: {{READ of size 1 at 0x.*}}
// CHECK: {{0x.* is located 2 bytes to the right of global variable}}
// CHECK: '{{.*}}XXX::YYY::ZZZ{{.*}}' {{.*}} of size 4
// CHECK: '{{.*}}XXX::YYY::ZZZ{{.*}}' is ascii string 'abc'
}