blob: 2273c0d06fc265c4c2ed4c5ca9838d8a897fcddf (
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: %llvmgcc %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);
}
|