brintos

brintos / llvm-project-archived public Read only

0
0
Text · 609 B · 9467d16 Raw
12 lines · plain
1# Create a temp dir for output and run the version fix script on the truncated version of lldb-defines.h in the inputs dir.2RUN: mkdir -p %t/Outputs3RUN: %python %p/../../../scripts/version-header-fix.py --input_path %p/Inputs/lldb-defines.h --output_path %t/Outputs/lldb-defines.h --major 21 --minor 0 --patch 124 5# Check the output6RUN: cat %t/Outputs/lldb-defines.h | FileCheck %s7 8# The LLDB version defines must be uncommented and filled in with the values passed into the script.9CHECK: {{^}}#define LLDB_VERSION 2110CHECK: {{^}}#define LLDB_REVISION 1211CHECK: {{^}}#define LLDB_VERSION_STRING "21.0.12"12