diff mbox

[U-Boot] test/py: use absolute dts path in vboot test

Message ID 20160718160725.13148-1-swarren@wwwdotorg.org
State Accepted
Commit c9ba60c4385bfbc10dc452a8f79c6db04bf18161
Delegated to: Tom Rini
Headers show

Commit Message

Stephen Warren July 18, 2016, 4:07 p.m. UTC
From: Stephen Warren <swarren@nvidia.com>

Without this, the test fails if the test is run with a cwd other than the
root of the U-Boot source tree.

Fixes: 8729d582595d ("test: Convert the vboot test to test/py")
Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
 test/py/tests/test_vboot.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass July 22, 2016, 3:22 a.m. UTC | #1
On 18 July 2016 at 10:07, Stephen Warren <swarren@wwwdotorg.org> wrote:
> From: Stephen Warren <swarren@nvidia.com>
>
> Without this, the test fails if the test is run with a cwd other than the
> root of the U-Boot source tree.
>
> Fixes: 8729d582595d ("test: Convert the vboot test to test/py")
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
>  test/py/tests/test_vboot.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
Tom Rini July 23, 2016, 12:13 a.m. UTC | #2
On Mon, Jul 18, 2016 at 10:07:25AM -0600, Stephen Warren wrote:

> From: Stephen Warren <swarren@nvidia.com>
> 
> Without this, the test fails if the test is run with a cwd other than the
> root of the U-Boot source tree.
> 
> Fixes: 8729d582595d ("test: Convert the vboot test to test/py")
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/test/py/tests/test_vboot.py b/test/py/tests/test_vboot.py
index c77989591c7e..25a78324e25d 100644
--- a/test/py/tests/test_vboot.py
+++ b/test/py/tests/test_vboot.py
@@ -151,7 +151,7 @@  def test_vboot(u_boot_console):
     cons = u_boot_console
     tmpdir = cons.config.result_dir + '/'
     tmp = tmpdir + 'vboot.tmp'
-    datadir = 'test/py/tests/vboot/'
+    datadir = cons.config.source_dir + '/test/py/tests/vboot/'
     fit = '%stest.fit' % tmpdir
     mkimage = cons.config.build_dir + '/tools/mkimage'
     fit_check_sign = cons.config.build_dir + '/tools/fit_check_sign'