The "file" utility may not be installed: https://green.lab.llvm.org/job/llvm.org/view/LLDB/job/lldb-ubuntu-aarch64/job/main/109/consoleText
14 lines
412 B
Plaintext
14 lines
412 B
Plaintext
# Check that the diagnostics dump command uses the correct directory and
|
|
# creates one if needed.
|
|
|
|
# Dump to an existing directory.
|
|
# RUN: rm -rf %t.existing
|
|
# RUN: mkdir -p %t.existing
|
|
# RUN: %lldb -o 'diagnostics dump -d %t.existing'
|
|
# RUN: test -d %t.existing
|
|
|
|
# Dump to a non-existing directory.
|
|
# RUN: rm -rf %t.nonexisting
|
|
# RUN: %lldb -o 'diagnostics dump -d %t.nonexisting'
|
|
# RUN: test -d %t.nonexisting
|