about summary refs log tree commit diff homepage
path: root/test/Runtime/POSIX/Write1.c
blob: 7f1e6f200e816f8079040c4afb68362f47716af4 (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
// RUN: %clang %s -emit-llvm %O0opt -c -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --exit-on-error --libc=uclibc --posix-runtime %t.bc --sym-files 1 10 --sym-stdout 2>%t.log

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

int main(int argc, char** argv) {
  char buf[32];
  
  FILE* f = fopen("A", "w");
  if (!f)
    klee_silent_exit(0);
  fwrite("Hello", sizeof("Hello"), 1, f);
  fclose(f);
  
  f = fopen("A", "r");
  fread(buf, sizeof("Hello"), 1, f);
  fclose(f);

  assert(memcmp(buf, "Hello", sizeof("Hello")) == 0);

  return 0;
}