Files
clang-p2996/lldb/test/Shell/ScriptInterpreter/Lua/watchpoint_callback.test
Jonas Devlieghere ba0eb7b66f [lldb/ScriptInterpreter] Fix stale/bogus error messages
Fix the nonsensical error messages for when breakpoint and watchpoint
callbacks are not supported.
2019-12-21 22:33:02 -08:00

9 lines
287 B
Plaintext

# REQUIRES: lua
# RUN: echo "int main() { return 0; }" | %clang_host -x c - -o %t
# RUN: %lldb -s %s --script-language lua %t 2>&1 | FileCheck %s
b main
r
watchpoint set expr 0x0
watchpoint command add -s lua
# CHECK: error: This script interpreter does not support watchpoint callbacks