2017-08-22 07:25:50 +08:00
|
|
|
RUN: %cpp_compiler %S/NullDerefTest.cpp -o %t-NullDerefTest
|
|
|
|
RUN: %cpp_compiler %S/SingleByteInputTest.cpp -o %t-SingleByteInputTest
|
|
|
|
|
|
|
|
RUN: echo 'Hi!rv349f34t3gg' > not_minimal_crash
|
2018-05-12 05:29:51 +08:00
|
|
|
RUN: %run %t-NullDerefTest -minimize_crash=1 not_minimal_crash -max_total_time=2 2>&1 | FileCheck %s
|
2017-08-22 07:25:50 +08:00
|
|
|
CHECK: CRASH_MIN: failed to minimize beyond ./minimized-from-{{.*}} (3 bytes), exiting
|
2018-05-12 05:29:51 +08:00
|
|
|
RUN: %run %t-NullDerefTest -minimize_crash=1 not_minimal_crash -max_total_time=2 -exact_artifact_path=exact_minimized_path 2>&1 | FileCheck %s --check-prefix=CHECK_EXACT
|
2017-08-22 07:25:50 +08:00
|
|
|
CHECK_EXACT: CRASH_MIN: failed to minimize beyond exact_minimized_path (3 bytes), exiting
|
|
|
|
RUN: rm not_minimal_crash minimized-from-* exact_minimized_path
|
|
|
|
|
|
|
|
RUN: echo -n 'abcd*xyz' > not_minimal_crash
|
2018-05-12 05:29:51 +08:00
|
|
|
RUN: %run %t-SingleByteInputTest -minimize_crash=1 not_minimal_crash -exact_artifact_path=exact_minimized_path 2>&1 | FileCheck %s --check-prefix=MIN1
|
2017-08-22 07:25:50 +08:00
|
|
|
MIN1: Test unit written to exact_minimized_path
|
|
|
|
MIN1: Test unit written to exact_minimized_path
|
|
|
|
MIN1: INFO: The input is small enough, exiting
|
|
|
|
MIN1: CRASH_MIN: failed to minimize beyond exact_minimized_path (1 bytes), exiting
|