diff options
author | Justin Bogner <mail@justinbogner.com> | 2015-03-18 21:30:46 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2015-03-18 21:30:46 +0000 |
commit | eba5227ccd4ab2e31e62fe1cdaa811b2da665e90 (patch) | |
tree | d524730d1c2da2c4ee386c37c1a424ed555cbe30 | |
parent | 86ee151570e7156de4ff94e9854ba4ece7ce467c (diff) | |
download | bcm5719-llvm-eba5227ccd4ab2e31e62fe1cdaa811b2da665e90.tar.gz bcm5719-llvm-eba5227ccd4ab2e31e62fe1cdaa811b2da665e90.zip |
asan: Cargo cult the linux test changes in r232501 to the darwin tests
This gets check-asan working again on Darwin - it looks like it was
just an omission not to update this as part of r232501.
llvm-svn: 232672
-rw-r--r-- | compiler-rt/test/asan/TestCases/Darwin/interface_symbols_darwin.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/Darwin/interface_symbols_darwin.c b/compiler-rt/test/asan/TestCases/Darwin/interface_symbols_darwin.c index a75044d491f..bd9bbee84a9 100644 --- a/compiler-rt/test/asan/TestCases/Darwin/interface_symbols_darwin.c +++ b/compiler-rt/test/asan/TestCases/Darwin/interface_symbols_darwin.c @@ -29,6 +29,18 @@ // RUN: echo __asan_report_store16 >> %t.interface // RUN: echo __asan_report_load_n >> %t.interface // RUN: echo __asan_report_store_n >> %t.interface +// RUN: echo __asan_report_exp_load1 >> %t.interface +// RUN: echo __asan_report_exp_load2 >> %t.interface +// RUN: echo __asan_report_exp_load4 >> %t.interface +// RUN: echo __asan_report_exp_load8 >> %t.interface +// RUN: echo __asan_report_exp_load16 >> %t.interface +// RUN: echo __asan_report_exp_store1 >> %t.interface +// RUN: echo __asan_report_exp_store2 >> %t.interface +// RUN: echo __asan_report_exp_store4 >> %t.interface +// RUN: echo __asan_report_exp_store8 >> %t.interface +// RUN: echo __asan_report_exp_store16 >> %t.interface +// RUN: echo __asan_report_exp_load_n >> %t.interface +// RUN: echo __asan_report_exp_store_n >> %t.interface // RUN: echo __asan_get_current_fake_stack >> %t.interface // RUN: echo __asan_addr_is_in_fake_stack >> %t.interface // RUN: echo __asan_mz_calloc >> %t.interface |