annotate compiler-rt/test/fuzzer/trace-malloc.test @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 RUN: %cpp_compiler %S/TraceMallocTest.cpp -o %t-TraceMallocTest
anatofuz
parents:
diff changeset
2
anatofuz
parents:
diff changeset
3 RUN: %run %t-TraceMallocTest -seed=1 -trace_malloc=1 -runs=10000 2>&1 | FileCheck %s
anatofuz
parents:
diff changeset
4 CHECK-DAG: MallocFreeTracer: STOP 0 0 (same)
anatofuz
parents:
diff changeset
5 CHECK-DAG: MallocFreeTracer: STOP 0 1 (DIFFERENT)
anatofuz
parents:
diff changeset
6 CHECK-DAG: MallocFreeTracer: STOP 1 0 (DIFFERENT)
anatofuz
parents:
diff changeset
7 CHECK-DAG: MallocFreeTracer: STOP 1 1 (same)