diff options
| author | Simon Glass <[email protected]> | 2019-07-08 13:18:47 -0600 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2019-07-23 20:27:58 -0700 |
| commit | 2569e10f5b56649aa13e806da39a6238fdb53cab (patch) | |
| tree | 068c4974613c64c6cff66f5dea83a12af8a79384 | |
| parent | 4c65025799d79a030a61f8d95e20954963c62db4 (diff) | |
binman: Fix up the _DoTestFile() function -u argument
This should be -u, not -up, since we don't need to preserve the output
directory in this case.
Signed-off-by: Simon Glass <[email protected]>
| -rw-r--r-- | tools/binman/ftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
