brintos

brintos / llvm-project-archived public Read only

0
0
Text · 666 B · 342f2a5 Raw
23 lines · cpp
1// Purpose:2//      Check that parsing bad commands gives a useful error.3//          - Syntax error (misplaced ',') over multiple lines4//      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_mline.cpp(21): invalid syntax12// CHECK:    ,'a', 3, 3, 3, 3, on_line=0)13// CHECK:    ^14 15int main(){16    return 0;17}18 19/*20DexExpectWatchValue(21    ,'a', 3, 3, 3, 3, on_line=0)22*/23