You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
474 B
12 lines
474 B
# Tests len_control
|
|
RUN: %cpp_compiler %S/SimpleTest.cpp -o %t-SimpleTest
|
|
|
|
LIM4: DONE{{.*}}lim: 4
|
|
LIM77: DONE{{.*}}lim: 77
|
|
LIM20: DONE{{.*}}lim: 20
|
|
RUN: %run %t-SimpleTest -runs=1 2>&1 | FileCheck %s --check-prefix=LIM4
|
|
RUN: %run %t-SimpleTest -seed_inputs=%t-SimpleTest -max_len=77 -runs=1 2>&1 | FileCheck %s --check-prefix=LIM77
|
|
RUN: echo -n 01234567890123456789 > %t-temp
|
|
RUN: %run %t-SimpleTest -seed_inputs=%t-temp -runs=1 2>&1 | FileCheck %s --check-prefix=LIM20
|
|
|