summaryrefslogtreecommitdiff
path: root/test/ubsan/TestCases/Misc/no-interception.cpp
blob: c82fed3bf3f698f71e9b02b2984481e8d259ac35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// REQUIRES: android

// Tests that ubsan can detect errors on Android if libc appears before the
// runtime in the library search order, which means that we cannot intercept
// symbols.

// RUN: %clangxx %p/Inputs/no-interception-dso.c -fsanitize=undefined -fPIC -shared -o %dynamiclib %ld_flags_rpath_so

// Make sure that libc is first in DT_NEEDED.
// RUN: %clangxx %s -lc -o %t %ld_flags_rpath_exe
// RUN: %run %t 2>&1 | FileCheck %s

#include <limits.h>

int dso_function(int);

int main(int argc, char **argv) {
  // CHECK: signed integer overflow
  dso_function(INT_MAX);
}