summaryrefslogtreecommitdiffstats
path: root/lldb/lit/Settings/TestSettingsWrite.test
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-10-09 19:22:02 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2019-10-09 19:22:02 +0000
commit87aa9c9e4d41ed881453e2fab85b3d25f648bb55 (patch)
tree63efe79832bf3de4f63e4e81c62e73923947b882 /lldb/lit/Settings/TestSettingsWrite.test
parentfd18e94697c987d5f24e25aa4e27adaffff3cce4 (diff)
downloadbcm5719-llvm-87aa9c9e4d41ed881453e2fab85b3d25f648bb55.tar.gz
bcm5719-llvm-87aa9c9e4d41ed881453e2fab85b3d25f648bb55.zip
Re-land "[test] Split LLDB tests into API, Shell & Unit"
The original patch got reverted because it broke `check-lldb` on a clean build. This fixes that. llvm-svn: 374201
Diffstat (limited to 'lldb/lit/Settings/TestSettingsWrite.test')
-rw-r--r--lldb/lit/Settings/TestSettingsWrite.test32
1 files changed, 0 insertions, 32 deletions
diff --git a/lldb/lit/Settings/TestSettingsWrite.test b/lldb/lit/Settings/TestSettingsWrite.test
deleted file mode 100644
index 72dcd73e33f..00000000000
--- a/lldb/lit/Settings/TestSettingsWrite.test
+++ /dev/null
@@ -1,32 +0,0 @@
-# This tests writing and reading settings from LLDB.
-
-# Check that the settings can be written to file and read again without
-# altering the values.
-# RUN: %lldb -b -o 'settings write -f %t.foo' -o 'settings read -f %t.foo' -o 'settings write -f %t.bar' -o 'settings read -f %t.bar' 2>&1 | FileCheck %s --check-prefix SUCCESS
-# RUN: diff -w %t.foo %t.bar
-# SUCCESS-NOT: error:
-
-# Check that exporting target settings only export target settings and nothing else.
-# RUN: %lldb -b -o 'settings write -f %t.target target' 2>&1 | FileCheck %s --check-prefix SUCCESS
-# RUN: cat %t.target | FileCheck %s --check-prefix TARGET
-# TARGET: settings set -f target
-# TARGET-NOT: settings set -f platform
-# TARGET-NOT: settings set -f symbols
-# TARGET-NOT: settings set -f interpreter
-# TARGET-NOT: settings set -f plugin
-
-# Check that settings appear twice when appending.
-# RUN: %lldb -b -o 'settings write -a -f %t.append target' -o 'settings write -a -f %t.append target' 2>&1 | FileCheck %s --check-prefix SUCCESS
-# RUN: cat %t.append | FileCheck %s --check-prefix APPEND
-# APPEND: settings set -f target.language
-# APPEND: settings set -f target.language
-
-# Check that an error is printed for non-existing setting.
-# RUN: echo "settings set -f bogus" > %t.bogus_setting
-# RUN: %lldb -b -o 'settings read -f %t.bogus_setting' 2>&1 | FileCheck %s --check-prefix BOGUS-SETTING
-# BOGUS-SETTING: error: invalid value path
-
-# Check that an error is printed for invalid value.
-# RUN: echo "settings set -f target.language bogus" > %t.bogus_value
-# RUN: %lldb -b -o 'settings read -f %t.bogus_value' 2>&1 | FileCheck %s --check-prefix BOGUS-VALUE
-# BOGUS-VALUE: error: invalid language type
OpenPOWER on IntegriCloud