diff options
author | Simon Glass | 2021-02-03 06:00:56 -0700 |
---|---|---|
committer | Simon Glass | 2021-03-22 19:23:27 +1300 |
commit | dff51a524c873673fc19f31927ba25445784fb35 (patch) | |
tree | 9d92e056aee4a6e1aa69016cb114d2931f67bfe8 /tools/dtoc/dtoc_test_addr32_64.dts | |
parent | acf5cb88b403540408e87d078d916269df371584 (diff) |
dtoc: Move test files into a test/ directory
It is confusing to have the test files in the same places as the
implementation. Move them into a separate directory.
Add a helper function for test_dtoc, to avoid repeating the same
path.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/dtoc/dtoc_test_addr32_64.dts')
-rw-r--r-- | tools/dtoc/dtoc_test_addr32_64.dts | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/tools/dtoc/dtoc_test_addr32_64.dts b/tools/dtoc/dtoc_test_addr32_64.dts deleted file mode 100644 index 7599d5b0a59..00000000000 --- a/tools/dtoc/dtoc_test_addr32_64.dts +++ /dev/null @@ -1,32 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0+ -/* - * Test device tree file for dtoc - * - * Copyright 2017 Google, Inc - */ - -/dts-v1/; - -/ { - #address-cells = <1>; - #size-cells = <2>; - - test1 { - u-boot,dm-pre-reloc; - compatible = "test1"; - reg = <0x1234 0x5678 0x0>; - }; - - test2 { - u-boot,dm-pre-reloc; - compatible = "test2"; - reg = <0x12345678 0x98765432 0x10987654>; - }; - - test3 { - u-boot,dm-pre-reloc; - compatible = "test3"; - reg = <0x12345678 0x98765432 0x10987654 2 0 3>; - }; - -}; |