diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2017-07-05 14:09:48 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 16:53:56 +0200 |
commit | 8367d388d4d581f12d33e882aef21af6977a2ef9 (patch) | |
tree | 8de1bee9acc943f9010ec04c56e04439e872b465 /support/testing/tests/fs/test_ext.py | |
parent | d0ad066e4a4524375c13564be99aa779d24d1b73 (diff) | |
download | buildroot-8367d388d4d581f12d33e882aef21af6977a2ef9.tar.gz buildroot-8367d388d4d581f12d33e882aef21af6977a2ef9.zip |
support/testing: remove references to host/usr
The tools are now installed in host/bin instead of host/usr/bin.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support/testing/tests/fs/test_ext.py')
-rw-r--r-- | support/testing/tests/fs/test_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/testing/tests/fs/test_ext.py b/support/testing/tests/fs/test_ext.py index ea3d3f11d7..34321a3995 100644 --- a/support/testing/tests/fs/test_ext.py +++ b/support/testing/tests/fs/test_ext.py @@ -13,7 +13,7 @@ RESBLKCNT_PROP = "Reserved block count" CHECK_FS_TYPE_CMD = "mount | grep '/dev/root on / type {}'" def dumpe2fs_run(builddir, image): - cmd = ["host/usr/sbin/dumpe2fs", os.path.join("images", image)] + cmd = ["host/sbin/dumpe2fs", os.path.join("images", image)] ret = subprocess.check_output(cmd, stderr=open(os.devnull, "w"), cwd=builddir, |