brintos

brintos / llvm-project-archived public Read only

0
0
Text · 673 B · 7e019df Raw
19 lines · cpp
1// Purpose:2//      Check that parsing bad commands gives a useful error.3//          - Syntax error (misplaced ',')4//      Check directives are in check.txt to prevent dexter reading any embedded5//      commands.6//7// RUN: %dexter_regression_test_cxx_build %s -o %t8// RUN: not %dexter_base test --binary %t %dexter_regression_test_debugger_args \9// RUN:     -v -- %s | FileCheck %s --match-full-lines --strict-whitespace10//11// CHECK:parser error:{{.*}}err_syntax.cpp(18): invalid syntax12// CHECK:// {{Dex}}ExpectWatchValue(,'a', 3, 3, 3, 3, on_line=0)13// CHECK:                       ^14 15int main(){16    return 0;17}18// DexExpectWatchValue(,'a', 3, 3, 3, 3, on_line=0)19