bolt/deps/llvm-18.1.8/cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/view.cpp
2025-02-14 19:21:04 +01:00

18 lines
490 B
C++

// Purpose:
// Check the `view` subtool works with typical inputs.
//
// RUN: %dexter_regression_test_build %s -o %t
// RUN: %dexter_regression_test_run --binary %t --results %t.results -- %s
//
// RUN: %dexter_base view %t.results/view.cpp.dextIR | FileCheck %s
// CHECK: ## BEGIN
// CHECK: ## END
//
// # [TODO] This doesn't run if FileCheck fails!
// RUN: rm -rf %t
int main() {
int a = 0;
return 0; //DexLabel('ret')
}
// DexExpectWatchValue('a', '0', on_line=ref('ret'))