about summary refs log tree commit diff homepage
path: root/test/Feature/DeterministicSwitch.c
blob: b6c186ff65f7b650f06f498ef0be658079a14794 (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
// RUN: %llvmgcc %s -emit-llvm -g -c -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee -debug-print-instructions=all:stderr --output-dir=%t.klee-out --allow-external-sym-calls --switch-type=internal --search=dfs %t.bc >%t.switch.log 2>&1
// RUN: FileCheck %s -input-file=%t.switch.log -check-prefix=CHECK-DFS
// RUN: rm -rf %t.klee-out
// RUN: %klee -debug-print-instructions=all:stderr --output-dir=%t.klee-out --allow-external-sym-calls --switch-type=internal --search=bfs %t.bc >%t.switch.log 2>&1
// RUN: FileCheck %s -input-file=%t.switch.log -check-prefix=CHECK-BFS

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

int main(int argc, char **argv) {
  char c;

  klee_make_symbolic(&c, sizeof(c), "index");

  switch (c) {
  case '\t':
    printf("tab\n");
    break;
  case ' ':
    printf("space\n");
    break;
  default:
    printf("default\n");
    break;
  }

  // CHECK-DFS: default
  // CHECK-DFS: space
  // CHECK-DFS: tab

  // CHECK-BFS: tab
  // CHECK-BFS: space
  // CHECK-BFS: default

  return 0;
}