blob: e76cbf6ffa504fd4cf86b87e408a9085479b0900 (
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
|
// RUN: %clang %s -emit-llvm %O0opt -c -o %t2.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --posix-runtime --exit-on-error %t2.bc --sym-arg 10 >%t.log
// RUN: test -f %t.klee-out/test000001.ktest
// RUN: test -f %t.klee-out/test000002.ktest
// RUN: grep -q "No" %t.log
// RUN: grep -qv "Yes" %t.log
/* Simple test for argv[0] */
#include <stdio.h>
int f(int argc, char **argv) {
if (argv[0][5] == '7')
printf("Yes\n");
else printf("No\n");
printf("%c\n", argv[0][5]);
if (argv[1][1] == 4)
printf("4\n");
printf("not 4\n");
return 0;
}
int main(int argc, char **argv) {
f(argc, argv);
}
|