diff mbox series

[U-Boot,v2,28/37] binman: Fix up the _DoTestFile() function -u argument

Message ID 20190708191856.138863-29-sjg@chromium.org
State Accepted
Commit 2569e10f5b56649aa13e806da39a6238fdb53cab
Delegated to: Simon Glass
Headers show
Series binman: Add CBFS support | expand

Commit Message

Simon Glass July 8, 2019, 7:18 p.m. UTC
This should be -u, not -up, since we don't need to preserve the output
directory in this case.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

Changes in v2: None

 tools/binman/ftest.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass July 18, 2019, 1:59 a.m. UTC | #1
This should be -u, not -up, since we don't need to preserve the output
directory in this case.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

Changes in v2: None

 tools/binman/ftest.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Applied to u-boot-dm, thanks!
diff mbox series

Patch

diff --git a/tools/binman/ftest.py b/tools/binman/ftest.py
index 9cec5f42fa3..b1780854cfe 100644
--- a/tools/binman/ftest.py
+++ b/tools/binman/ftest.py
@@ -208,7 +208,7 @@  class TestFunctional(unittest.TestCase):
         if map:
             args.append('-m')
         if update_dtb:
-            args.append('-up')
+            args.append('-u')
         if not use_real_dtb:
             args.append('--fake-dtb')
         if verbosity is not None: