]> git.proxmox.com Git - rustc.git/blame - src/compiler-rt/test/asan/TestCases/Linux/interface_symbols_linux.c
Imported Upstream version 1.6.0+dfsg1
[rustc.git] / src / compiler-rt / test / asan / TestCases / Linux / interface_symbols_linux.c
CommitLineData
92a42be0 1// Check the presence of interface symbols in compiled file.
1a4d82fc
JJ
2
3// RUN: %clang_asan -O2 %s -o %t.exe
4// RUN: nm -D %t.exe | grep " T " | sed "s/.* T //" \
5// RUN: | grep "__asan_" | sed "s/___asan_/__asan_/" \
92a42be0 6// RUN: | sed -E "s/__asan_version_mismatch_check_v[0-9]+/__asan_version_mismatch_check/" \
1a4d82fc
JJ
7// RUN: | grep -v "__asan_default_options" \
8// RUN: | grep -v "__asan_stack_" \
9// RUN: | grep -v "__asan_on_error" > %t.symbols
10// RUN: cat %p/../../../../lib/asan/asan_interface_internal.h \
11// RUN: | sed "s/\/\/.*//" | sed "s/typedef.*//" \
12// RUN: | grep -v "OPTIONAL" \
13// RUN: | grep "__asan_.*(" | sed "s/.* __asan_/__asan_/;s/(.*//" \
14// RUN: > %t.interface
15// RUN: echo __asan_report_load1 >> %t.interface
16// RUN: echo __asan_report_load2 >> %t.interface
17// RUN: echo __asan_report_load4 >> %t.interface
18// RUN: echo __asan_report_load8 >> %t.interface
19// RUN: echo __asan_report_load16 >> %t.interface
20// RUN: echo __asan_report_store1 >> %t.interface
21// RUN: echo __asan_report_store2 >> %t.interface
22// RUN: echo __asan_report_store4 >> %t.interface
23// RUN: echo __asan_report_store8 >> %t.interface
24// RUN: echo __asan_report_store16 >> %t.interface
25// RUN: echo __asan_report_load_n >> %t.interface
26// RUN: echo __asan_report_store_n >> %t.interface
92a42be0
SL
27// RUN: echo __asan_report_exp_load1 >> %t.interface
28// RUN: echo __asan_report_exp_load2 >> %t.interface
29// RUN: echo __asan_report_exp_load4 >> %t.interface
30// RUN: echo __asan_report_exp_load8 >> %t.interface
31// RUN: echo __asan_report_exp_load16 >> %t.interface
32// RUN: echo __asan_report_exp_store1 >> %t.interface
33// RUN: echo __asan_report_exp_store2 >> %t.interface
34// RUN: echo __asan_report_exp_store4 >> %t.interface
35// RUN: echo __asan_report_exp_store8 >> %t.interface
36// RUN: echo __asan_report_exp_store16 >> %t.interface
37// RUN: echo __asan_report_exp_load_n >> %t.interface
38// RUN: echo __asan_report_exp_store_n >> %t.interface
1a4d82fc
JJ
39// RUN: echo __asan_get_current_fake_stack >> %t.interface
40// RUN: echo __asan_addr_is_in_fake_stack >> %t.interface
92a42be0
SL
41// RUN: echo __asan_alloca_poison >> %t.interface
42// RUN: echo __asan_allocas_unpoison >> %t.interface
1a4d82fc
JJ
43// RUN: cat %t.interface | sort -u | diff %t.symbols -
44
45// FIXME: nm -D on powerpc somewhy shows ASan interface symbols residing
46// in "initialized data section".
47// REQUIRES: x86_64-supported-target,i386-supported-target,asan-static-runtime
48
49int main() { return 0; }