File: main.c

package info (click to toggle)
cbmc 6.6.0-4
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 153,852 kB
  • sloc: cpp: 386,459; ansic: 114,466; java: 28,405; python: 6,003; yacc: 4,552; makefile: 4,041; lex: 2,487; xml: 2,388; sh: 2,050; perl: 557; pascal: 184; javascript: 163; ada: 36
file content (28 lines) | stat: -rw-r--r-- 682 bytes parent folder | download
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
#include <assert.h>
#include <stdbool.h>
#include <stdlib.h>

#define SIZE 10

void foo(char **out_ptr1, char **out_ptr2)
  // clang-format off
  __CPROVER_assigns(*out_ptr1, *out_ptr2)
  __CPROVER_ensures(__CPROVER_is_fresh(*out_ptr1, SIZE))
  __CPROVER_ensures(__CPROVER_is_fresh(*out_ptr2, SIZE))
// clang-format on
{
  *out_ptr1 = malloc(SIZE);
  *out_ptr2 = malloc(SIZE);
}

int main()
{
  char *out1;
  char *out2;
  foo(&out1, &out2);
  __CPROVER_assert(__CPROVER_rw_ok(out1, SIZE), "out1 is rw_ok");
  __CPROVER_assert(__CPROVER_rw_ok(out2, SIZE), "out2 is rw_ok");
  __CPROVER_assert(
    !__CPROVER_same_object(out1, out2), "out1 and out2 are not aliased");
  return 0;
}