1 | // Purpose: |
2 | // Check that Dexter command syntax errors associate with the line and file |
3 | // they appeared in rather than the current declared file. |
4 | // |
5 | // RUN: %dexter_regression_test_build %s -o %t |
6 | // RUN: not %dexter_base test --binary %t --debugger 'lldb' -v -- %s \ |
7 | // RUN: | FileCheck %s --implicit-check-not=FAIL-FILENAME-MATCH |
8 | |
9 | // CHECK: err_syntax_dexdeclarefile.cpp(14): Undeclared address: 'not_been_declared' |
10 | |
11 | int main() { return 0; } |
12 | |
13 | // DexDeclareFile('FAIL-FILENAME-MATCH') |
14 | // DexExpectWatchValue('example', address('not_been_declared')) |
15 | |