aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2016-12-09 16:05:03 +1100
committerDavid Gibson <david@gibson.dropbear.id.au>2016-12-09 16:13:39 +1100
commit66381538ce24d7ca275edaf00303e09b653b3a4b (patch)
tree13cd4060304bea505f8c2b2036d18d75b34b3437
parentba765b273f0f89dd0a2ffb74b96f08d117ce2915 (diff)
downloaddtc-66381538ce24d7ca275edaf00303e09b653b3a4b.zip
dtc-66381538ce24d7ca275edaf00303e09b653b3a4b.tar.gz
dtc-66381538ce24d7ca275edaf00303e09b653b3a4b.tar.bz2
tests: Remove "suppression of fixups" tests
I think these were for an additional command line option which got dropped during development. At this point all they're testing is that fixups don't get generated for a non /plugin/ tree, which is already tested with one of the simpler cases previously. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
-rw-r--r--tests/overlay_base_fixups.dts22
-rwxr-xr-xtests/run_tests.sh6
2 files changed, 0 insertions, 28 deletions
diff --git a/tests/overlay_base_fixups.dts b/tests/overlay_base_fixups.dts
deleted file mode 100644
index 815a054..0000000
--- a/tests/overlay_base_fixups.dts
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * Copyright (c) 2016 Konsulko Inc.
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-/dts-v1/;
-
-/ {
- test: test-node {
- test-int-property = <42>;
- test-str-property = "foo";
-
- subtest: sub-test-node {
- sub-test-property;
- };
- };
-
- ref {
- local-ref = <&test &subtest>;
- };
-};
diff --git a/tests/run_tests.sh b/tests/run_tests.sh
index 660e842..0af3995 100755
--- a/tests/run_tests.sh
+++ b/tests/run_tests.sh
@@ -231,12 +231,6 @@ dtc_overlay_tests () {
run_test check_path overlay_overlay_with_symbols_auto.test.dtb exists "/__fixups__"
run_test check_path overlay_overlay_with_symbols_auto.test.dtb exists "/__local_fixups__"
- # Test suppression of fixups
- run_dtc_test -@ -I dts -O dtb -o overlay_base_with_symbols_no_fixups.test.dtb overlay_base_fixups.dts
- run_test check_path overlay_base_with_symbols_no_fixups.test.dtb exists "/__symbols__"
- run_test check_path overlay_base_with_symbols_no_fixups.test.dtb not-exists "/__fixups__"
- run_test check_path overlay_base_with_symbols_no_fixups.test.dtb not-exists "/__local_fixups__"
-
# Test generation of aliases insted of symbols
run_dtc_test -A -I dts -O dtb -o overlay_base_with_aliases.dtb overlay_base.dts
run_test check_path overlay_base_with_aliases.dtb exists "/aliases"