about summary refs log tree commit diff homepage
path: root/test/Feature/PreferCex.c
blob: 6cdb8446b82e490fcdaa260a43b982b97c59f9db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: %llvmgcc %s -emit-llvm -O0 -c -o %t1.bc
// RUN: %klee --exit-on-error %t1.bc
// RUN: ktest-tool %T/klee-last/test000001.ktest | FileCheck %s

#include <assert.h>
#include <stdlib.h>
#include <stdio.h>

int main() {
  char buf[4];

  klee_make_symbolic(buf, sizeof buf);
  // CHECK: Hi\x00\x00
  klee_prefer_cex(buf, buf[0]=='H');
  klee_prefer_cex(buf, buf[1]=='i');
  klee_prefer_cex(buf, buf[2]=='\0');

  return 0;
}