16 lines
789 B
Plaintext
16 lines
789 B
Plaintext
## Check that generated functions are included.
|
|
# RUN: cp -f %S/Inputs/generated_funcs.ll %t.ll && %update_test_checks --include-generated-funcs %t.ll
|
|
# RUN: diff -u %t.ll %S/Inputs/generated_funcs.ll.generated.expected
|
|
|
|
## Check that running the script again does not change the result:
|
|
# RUN: %update_test_checks --include-generated-funcs %t.ll
|
|
# RUN: diff -u %t.ll %S/Inputs/generated_funcs.ll.generated.expected
|
|
|
|
## Check that generated functions are not included.
|
|
# RUN: cp -f %S/Inputs/generated_funcs.ll %t.ll && %update_test_checks %t.ll
|
|
# RUN: diff -u %t.ll %S/Inputs/generated_funcs.ll.nogenerated.expected
|
|
|
|
## Check that running the script again does not change the result:
|
|
# RUN: %update_test_checks %t.ll
|
|
# RUN: diff -u %t.ll %S/Inputs/generated_funcs.ll.nogenerated.expected
|