1 // Purpose: 2 // Check the `clang-opt-bisect` tool runs with typical input. 3 // 4 // REQUIRES: system-linux, lldb 5 // 6 // RUN: true 7 // RUN: %dexter_base clang-opt-bisect --debugger 'lldb' --builder 'clang' \ 8 // RUN: --cflags "-O0 -g" -- %s \ 9 // RUN: | FileCheck %s 10 // CHECK: running pass 0 11 // CHECK: wrote{{.*}}per_pass_score 12 // CHECK: wrote{{.*}}pass-summary 13 // CHECK: wrote{{.*}}overall-pass-summary 14 main()15int main() { 16 return 0; 17 } 18