[PATCH] D46588: [LLDB][lldb-mi] Add possibility to set breakpoints without selecting a target.
Adrian Prantl via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue May 15 13:36:04 PDT 2018
aprantl added inline comments.
================
Comment at: lit/tools/lldb-mi/breakpoint/break-insert.test:14
+# CHECK-AFTER: ^running
+# CHECK-AFTER: *stopped,reason="breakpoint-hit"
+
----------------
CHECK-AFTER is not recognized by FileCheck:
https://www.llvm.org/docs/CommandGuide/FileCheck.html
You probably saw this in a testcase that ran FileCheck twice, one time with the CHECK prefix and once with a custom `--check-prefix=CHECK-AFTER` which is a common trick to have more than one set of FileCheck directives in a single file.
Repository:
rL LLVM
https://reviews.llvm.org/D46588
More information about the llvm-commits
mailing list