summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Driver/TestPositionalArgs.test
AgeCommit message (Collapse)Author
2024-10-31[lldb] Remove lldb-repro utilityJonas Devlieghere
Remove lldb-repro which was used to run the test suite against a reproducer. The corresponding functionality has been removed from LLDB so there's no need for the tool anymore.
2020-05-20[lldb/Test] Support arbitrary file extensions in TestPositionalArgs.testJonas Devlieghere
On Windows the line must match: Use 'lldb.exe --help' for a complete list of options.
2020-05-20[lldb/Driver] Print snippet before exiting with unknown argument.Jonas Devlieghere
Print a little snippet before exiting when passed unrecognized arguments. The goal is twofold: - Point users to lldb --help. - Make it clear that we exited the debugger.
2020-05-20[lldb/Driver] Error out when encountering unknown argumentsJonas Devlieghere
There appears to be consensus in D80165 that this is the desired behavior and I personally agree. Differential revision: https://reviews.llvm.org/D80226
2020-05-18[lldb/Test] Skip TestPositionalArgs with lldb-reproJonas Devlieghere
2020-05-18[lldb/Driver] Fix handling on positional argumentsJonas Devlieghere
Before the transition to libOption it was possible to specify arguments for the inferior without -- as long as they didn't start with a dash. For example, the following invocations should all behave the same: $ lldb inferior inferior-arg $ lldb inferior -- inferior-arg $ lldb -- inferior inferior-arg This patch fixes that behavior, documents it and adds a test to cover the different combinations. Differential revision: https://reviews.llvm.org/D80165