about summary refs log tree commit diff homepage
path: root/test/Feature/EntryPoint.c
blob: 8a10d36ffffa1c4bc064e25e0f0bcbfc76508f08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %clang -emit-llvm -g -c %s -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --entry-point=other_main %t.bc | FileCheck -check-prefix=CHECK-OTHER_MAIN %s

// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --entry-point="" %t.bc 2>%t.stderr.log || echo "Exit status must be 0"
// RUN: FileCheck -check-prefix=CHECK-EMPTY --input-file=%t.stderr.log %s

#include <stdio.h>

int other_main() {
  printf("Hello World\n");
  // CHECK-OTHER_MAIN: Hello World
  return 0;
}

// CHECK-EMPTY: KLEE: ERROR: entry-point cannot be empty