about summary refs log tree commit diff homepage
path: root/test/Feature/CallToUndefinedExternal.cpp
blob: b300d4e437eba290cf01ea0228440c2c05c7965f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %llvmgxx %s -emit-llvm -g -c -o %t1.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out %t1.bc 2>&1 | FileCheck %s
// RUN: test -f %t.klee-out/test000001.external.err

extern "C" void poof(void);

int main() {
  // CHECK: failed external call: poof
  poof();

  return 0;
}