forked from OSchip/llvm-project
Replace __asan_set_error_exit_code() with __sanitizer_set_death_callback()
Summary: We are going to remove the former soon. Reviewers: EricWF Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D12117 llvm-svn: 245467
This commit is contained in:
parent
ff08a2ecad
commit
0fc7892b77
|
@ -7,6 +7,8 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: clang-3.3, clang-3.4, clang-3.5
|
||||
|
||||
// <vector>
|
||||
|
||||
// reference operator[](size_type n);
|
||||
|
@ -21,8 +23,11 @@
|
|||
#include "test_macros.h"
|
||||
|
||||
#ifndef _LIBCPP_HAS_NO_ASAN
|
||||
extern "C" void __asan_set_error_exit_code(int);
|
||||
extern "C" void __sanitizer_set_death_callback(void (*callback)(void));
|
||||
|
||||
void do_exit() {
|
||||
exit(0);
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
|
@ -48,7 +53,7 @@ int main()
|
|||
assert(is_contiguous_container_asan_correct(v));
|
||||
}
|
||||
|
||||
__asan_set_error_exit_code(0);
|
||||
__sanitizer_set_death_callback(do_exit);
|
||||
{
|
||||
typedef int T;
|
||||
typedef std::vector<T> C;
|
||||
|
|
Loading…
Reference in New Issue