Move MSan lit-tests under test/msan
[blocksruntime.git] / lib / asan / lit_tests / TestCases / Linux / globals-gc-sections.cc
blob72a9e9498f85d3a3ae61c39a08392706fe761363
1 // RUN: %clangxx_asan %s -o %t -Wl,--gc-sections -ffunction-sections -mllvm -asan-globals=0
2 // RUN: %clangxx_asan %s -o %t -Wl,--gc-sections -ffunction-sections -mllvm -asan-globals=1
4 // https://code.google.com/p/address-sanitizer/issues/detail?id=260
5 // XFAIL: *
7 int undefined();
9 int (*unused)() = undefined;
11 int main() {
12 return 0;