about summary refs log tree commit diff homepage
path: root/test/Replay/libkleeruntest/replay_invalid_object_names.c
blob: 0285024c97463b11ca00584944c8c475439e64c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// RUN: %llvmgcc -DOBJ_NAME=simple_name %s -emit-llvm -g -O0 -c -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --search=dfs %t.bc
// RUN: test -f %t.klee-out/test000001.ktest

// Now try to replay with libkleeRuntest but build the binary to use a different
// object name
// RUN: %cc -DOBJ_NAME=wrong_name -DPRINT_VALUE %s %libkleeruntest -Wl,-rpath %libkleeruntestdir -o %t_runner

// Check that the default is to exit with an error
// RUN: not env KTEST_FILE=%t.klee-out/test000001.ktest %t_runner 2>&1 | FileCheck -check-prefix=CHECK_FATAL %s

// Check that setting `KLEE_RUN_TEST_ERRORS_NON_FATAL` will not exit with an error
// and will continue executing.
// RUN: env KTEST_FILE=%t.klee-out/test000001.ktest KLEE_RUN_TEST_ERRORS_NON_FATAL=1 %t_runner 2>&1 | FileCheck %s

#include "klee/klee.h"
#include <stdio.h>

#ifndef OBJ_NAME
#error OBJ_NAME must be defined
#endif

#define STRINGIFY(X) #X
#define XSTRINGIFY(X) STRINGIFY(X)


int main(int argc, char** argv) {
  int x = 1;
  klee_make_symbolic(&x, sizeof(x), XSTRINGIFY(OBJ_NAME));
  klee_assume(x == 0);

#ifdef PRINT_VALUE
  printf("x=%d\n", x);
#endif

  return 0;
}
// CHECK: KLEE_RUN_TEST_ERROR: object name mismatch. Requesting "wrong_name" but returning "simple_name"
// CHECK: KLEE_RUN_TEST_ERROR: Forcing execution to continue
// CHECK: x=0

// CHECK_FATAL: KLEE_RUN_TEST_ERROR: object name mismatch. Requesting "wrong_name" but returning "simple_name"
// CHECK_FATAL-NOT: x=0