summaryrefslogtreecommitdiff
path: root/cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/clang-opt-bisect/clang-opt-bisect.cpp
blob: d480da8ac0ba261e16c053ef77c99932ce1859bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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

int main() {
    return 0;
}