You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
424 B
19 lines
424 B
7 months ago
|
// REQUIRES: lldb
|
||
|
// Purpose:
|
||
|
// Check the `view` subtool works with typical inputs.
|
||
|
//
|
||
|
// RUN: %dexter_regression_test --results %t -- %s
|
||
|
//
|
||
|
// RUN: %dexter_base view %t/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='ret')
|