summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/Linux/asan_dlopen_test.cc
blob: 83ce4f83bbd15a0e96c97cb79783b12c65a09daa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Test that dlopen of dynamic runtime is prohibited.
//
// RUN: %clangxx %s -DRT=\"%shared_libasan\" -o %t -ldl
// RUN: not %t 2>&1 | FileCheck %s
// REQUIRES: asan-dynamic-runtime

#include <dlfcn.h>

int main(int argc, char **argv) {
  dlopen(RT, RTLD_LAZY);
  return 0;
}

// CHECK: ASan runtime does not come first in initial library list