summaryrefslogtreecommitdiff
path: root/cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/clang-opt-bisect/clang-opt-bisect.cpp
blob: f3cc20ec45bcf1eb14abacb288a1f83a877661f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Purpose:
//     Check the `clang-opt-bisect` tool runs with typical input.
//
// RUN: true
// RUN: %dexter_base clang-opt-bisect \
// RUN:     --debugger %dexter_regression_test_debugger \
// RUN:     --builder %dexter_regression_test_builder \
// RUN:     --cflags "%dexter_regression_test_cflags" \
// RUN:     --ldflags "%dexter_regression_test_ldflags" \
// RUN:     -- %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;
}