]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
test: Include /sbin to the PATH when creating file system
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 10 Jun 2021 15:08:42 +0000 (18:08 +0300)
committerTom Rini <trini@konsulko.com>
Wed, 23 Jun 2021 12:45:03 +0000 (08:45 -0400)
On some distributions the mkfs is under /sbin and /sbin is not set
for mere users. Include /sbin to the PATH when creating file system,
so that users won't get a scary traceback from Python.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
test/py/tests/test_fs/conftest.py

index 410a675b971468b451a349e2c440417aeb377099..7325486cdb1a267286bdfcaca7c62e6bb63e5598 100644 (file)
@@ -159,6 +159,10 @@ def mk_fs(config, fs_type, size, id):
 
     count = (size + 1048576 - 1) / 1048576
 
+    # Some distributions do not add /sbin to the default PATH, where mkfs lives
+    if '/sbin' not in os.environ["PATH"].split(os.pathsep):
+        os.environ["PATH"] += os.pathsep + '/sbin'
+
     try:
         check_call('rm -f %s' % fs_img, shell=True)
         check_call('dd if=/dev/zero of=%s bs=1M count=%d'