aboutsummaryrefslogtreecommitdiff
path: root/tools/binman/test/163_x86_rom_me_empty.dts
diff options
context:
space:
mode:
authorSimon Glass2020-07-25 15:11:19 -0600
committerSimon Glass2020-07-26 19:59:57 -0600
commit52b10dd7def5fa77366ee89bffde597b2e03d1a1 (patch)
treef3d362ffe05105fda6613f9c4419e33a2f937015 /tools/binman/test/163_x86_rom_me_empty.dts
parent2548493ab41e8dfa8ed43b64fd0fa66c6f3cddc3 (diff)
binman: Don't change the descriptor in tests
At present testPackX86RomMeNoDesc removes the contents of the descriptor.bin file and testPackX86RomMeMissingDesc removes the file completely. If a test that relies on this file happens to run after it is removed, it will not work. Since we have no control over the selecting of tests that run in parallel and series, we must avoid changing the files. Update this tests to use separate files instead. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/test/163_x86_rom_me_empty.dts')
-rw-r--r--tools/binman/test/163_x86_rom_me_empty.dts22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/binman/test/163_x86_rom_me_empty.dts b/tools/binman/test/163_x86_rom_me_empty.dts
new file mode 100644
index 00000000000..9349d2d7245
--- /dev/null
+++ b/tools/binman/test/163_x86_rom_me_empty.dts
@@ -0,0 +1,22 @@
+// SPDX-License-Identifier: GPL-2.0+
+
+/dts-v1/;
+
+/ {
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ binman {
+ sort-by-offset;
+ end-at-4gb;
+ size = <0x800000>;
+ intel-descriptor {
+ filename = "descriptor-empty.bin";
+ };
+
+ intel-me {
+ filename = "me.bin";
+ offset-unset;
+ };
+ };
+};