This reverts commit faf7af864f9258768133894764f1fae58d43bb09. This is failing on the Darwin bots. https://green.lab.llvm.org/job/llvm.org/view/LLDB/job/lldb-cmake/16164/changes#faf7af864f9258768133894764f1fae58d43bb09
15 lines
542 B
Plaintext
15 lines
542 B
Plaintext
RUN: %lldb-server gdbserver --fd 2>&1 | FileCheck --check-prefixes=FD1,ALL %s
|
|
FD1: error: --fd: missing argument
|
|
|
|
RUN: %lldb-server gdbserver --fd three 2>&1 | FileCheck --check-prefixes=FD2,ALL %s
|
|
FD2: error: invalid '--fd' argument
|
|
|
|
RUN: %lldb-server gdbserver --bogus 2>&1 | FileCheck --check-prefixes=BOGUS,ALL %s
|
|
BOGUS: error: unknown argument '--bogus'
|
|
|
|
RUN: %lldb-server gdbserver 2>&1 | FileCheck --check-prefixes=CONN,ALL %s
|
|
CONN: error: no connection arguments
|
|
|
|
ALL: Use '{{.*}} g[dbserver] --help' for a complete list of options.
|
|
|