
Summary: As well as some tests to ensure that various combinations of the clang command line flags work (shared/static/minimal). Reviewers: eugenis, alekseyshl, vitalybuka Reviewed By: vitalybuka Subscribers: srhines, delcypher, #sanitizers, llvm-commits Differential Revision: https://reviews.llvm.org/D48553 llvm-svn: 335981
22 lines
534 B
C++
22 lines
534 B
C++
// Test that the preloaded runtime works without linking the static library.
|
|
|
|
// RUN: %clang %s -lstdc++ -o %t
|
|
// RUN: env LD_PRELOAD=%shared_libscudo not %run %t 2>&1 | FileCheck %s
|
|
// RUN: env LD_PRELOAD=%shared_minlibscudo not %run %t 2>&1 | FileCheck %s
|
|
|
|
// This way of setting LD_PRELOAD does not work with Android test runner.
|
|
// REQUIRES: !android
|
|
|
|
#include <assert.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
int *p = new int;
|
|
assert(p);
|
|
*p = 0;
|
|
delete p;
|
|
delete p;
|
|
return 0;
|
|
}
|
|
|
|
// CHECK: ERROR: invalid chunk state
|