diff options
Diffstat (limited to 'debuginfo-tests/dexter/feature_tests/subtools/clang-opt-bisect/clang-opt-bisect.cpp')
-rw-r--r-- | debuginfo-tests/dexter/feature_tests/subtools/clang-opt-bisect/clang-opt-bisect.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/debuginfo-tests/dexter/feature_tests/subtools/clang-opt-bisect/clang-opt-bisect.cpp b/debuginfo-tests/dexter/feature_tests/subtools/clang-opt-bisect/clang-opt-bisect.cpp new file mode 100644 index 00000000000..bc625da0e53 --- /dev/null +++ b/debuginfo-tests/dexter/feature_tests/subtools/clang-opt-bisect/clang-opt-bisect.cpp @@ -0,0 +1,17 @@ +// Purpose: +// Check the `clang-opt-bisect` tool runs with typical input. +// +// REQUIRES: system-linux, lldb +// +// RUN: true +// RUN: %dexter clang-opt-bisect --debugger 'lldb' --builder 'clang' \ +// RUN: --cflags "-O0 -g" -- %s \ +// RUN: | FileCheck %s +// CHECK: running pass 0 +// CHECK: wrote{{.*}}per_pass_score +// CHECK: wrote{{.*}}pass-summary +// CHECK: wrote{{.*}}overall-pass-summary + +int main() { + return 0; +} |