mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 05:36:06 +00:00

This patch does not do anything, but paves the way for future changes, where %run command will be expanded into a script performing the testing on device. Differential Revision: https://reviews.llvm.org/D46553 llvm-svn: 332144
11 lines
373 B
Plaintext
11 lines
373 B
Plaintext
// FIXME: This test infinite loops on darwin because it crashes
|
|
// printing a stack trace repeatedly
|
|
UNSUPPORTED: darwin
|
|
|
|
RUN: %cpp_compiler %S/TraceMallocTest.cpp -o %t-TraceMallocTest
|
|
|
|
RUN: %run %t-TraceMallocTest -seed=1 -trace_malloc=2 -runs=1000 2>&1 | FileCheck %s --check-prefix=TRACE2
|
|
TRACE2-DAG: FREE[0]
|
|
TRACE2-DAG: MALLOC[0]
|
|
TRACE2-DAG: in LLVMFuzzerTestOneInput
|