xref: /llvm-project/lldb/test/Shell/Error/cleanup.cpp (revision b6d56ddac1bf50d532abdc86a84f9bc8e3e7a266)
1 // Test CommandObject is cleaned up even after commands fail due to not taking any argument.
2 // RUN: %clang_host -g %s -o %t
3 // RUN: %lldb -f %t -o "settings set interpreter.stop-command-source-on-error false" -s \
4 // RUN:   %S/Inputs/cleanup.lldbinit
main()5 int main() { return 0; }
6