forked from OSchip/llvm-project
[update_cc_test_checks.py] Add test for D84511
Reviewed By: MaskRay Differential Revision: https://reviews.llvm.org/D85115
This commit is contained in:
parent
216ad2da74
commit
e150d2cab8
|
@ -2,6 +2,9 @@
|
|||
|
||||
# RUN: cp %S/Inputs/basic-cplusplus.cpp %t.cpp && %update_cc_test_checks %t.cpp
|
||||
# RUN: diff -u %S/Inputs/basic-cplusplus.cpp.expected %t.cpp
|
||||
## Check that it also works with the --llvm-bin flag instead of --clang
|
||||
# RUN: cp %S/Inputs/basic-cplusplus.cpp %t.cpp && %update_cc_test_checks --clang='' --llvm-bin=%clang_tools_dir %t.cpp
|
||||
# RUN: diff -u %S/Inputs/basic-cplusplus.cpp.expected %t.cpp
|
||||
## Check that re-running update_cc_test_checks doesn't change the output
|
||||
# RUN: %update_cc_test_checks %t.cpp
|
||||
# RUN: diff -u %S/Inputs/basic-cplusplus.cpp.expected %t.cpp
|
||||
|
|
|
@ -23,3 +23,5 @@ config.substitutions.append(
|
|||
('%update_cc_test_checks', "%s %s %s" % (
|
||||
shell_quote(config.python_executable), shell_quote(script_path),
|
||||
extra_args)))
|
||||
config.substitutions.append(
|
||||
('%clang_tools_dir', shell_quote(config.clang_tools_dir)))
|
||||
|
|
Loading…
Reference in New Issue