George Karpenkov | 10ab2ac | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 1 | RUN: %cpp_compiler %S/NullDerefTest.cpp -o %t-NullDerefTest |
| 2 | RUN: %cpp_compiler %S/SingleByteInputTest.cpp -o %t-SingleByteInputTest |
George Karpenkov | 077c75b | 2018-06-12 21:14:33 +0000 | [diff] [blame] | 3 | RUN: mkdir -p %t.dir |
George Karpenkov | 10ab2ac | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 4 | |
George Karpenkov | 077c75b | 2018-06-12 21:14:33 +0000 | [diff] [blame] | 5 | RUN: echo 'Hi!rv349f34t3gg' > %t.dir/not_minimal_crash |
| 6 | RUN: %run %t-NullDerefTest -minimize_crash=1 %t.dir/not_minimal_crash -max_total_time=2 2>&1 | FileCheck %s |
| 7 | CHECK: CRASH_MIN: failed to minimize beyond {{.*}}minimized-from{{.*}} (3 bytes), exiting |
| 8 | RUN: %run %t-NullDerefTest -minimize_crash=1 %t.dir/not_minimal_crash -max_total_time=2 -exact_artifact_path=%t.exact_minimized_path 2>&1 | FileCheck %s --check-prefix=CHECK_EXACT |
| 9 | CHECK_EXACT: CRASH_MIN: failed to minimize beyond {{.*}}exact_minimized_path{{.*}} (3 bytes), exiting |
| 10 | RUN: rm %t.dir/not_minimal_crash %t.exact_minimized_path |
George Karpenkov | 10ab2ac | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 11 | |
George Karpenkov | 077c75b | 2018-06-12 21:14:33 +0000 | [diff] [blame] | 12 | RUN: echo -n 'abcd*xyz' > %t.dir/not_minimal_crash |
| 13 | RUN: %run %t-SingleByteInputTest -minimize_crash=1 %t.dir/not_minimal_crash -exact_artifact_path=%t.exact_minimized_path 2>&1 | FileCheck %s --check-prefix=MIN1 |
| 14 | MIN1: Test unit written to {{.*}}exact_minimized_path |
| 15 | MIN1: Test unit written to {{.*}}exact_minimized_path |
George Karpenkov | 10ab2ac | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 16 | MIN1: INFO: The input is small enough, exiting |
George Karpenkov | 077c75b | 2018-06-12 21:14:33 +0000 | [diff] [blame] | 17 | MIN1: CRASH_MIN: failed to minimize beyond {{.*}}exact_minimized_path (1 bytes), exiting |