blob: 469c903334e09844db5843fa20c1600f630dc02d (
plain)
1
2
3
4
5
|
RUN: not %lldb -b -o 'break set -n foo -c bar -Y bogus' 2>&1 | FileCheck %s --check-prefix INVALID
INVALID: error: invalid value ('bogus') for -Y (condition-language): invalid language
RUN: not %lldb -b -o 'break set -n foo -c bar -Y python' 2>&1 | FileCheck %s --check-prefix NOEXPRSUPPORT
NOEXPRSUPPORT: error: invalid value ('python') for -Y (condition-language): no expression support for language
|