summaryrefslogtreecommitdiff
path: root/test/py/tests/test_fs/test_squashfs/sqfs_common.py
diff options
context:
space:
mode:
authorJoao Marcos Costa <joaomarcos.costa@bootlin.com>2020-08-10 15:37:27 +0300
committerTom Rini <trini@konsulko.com>2020-08-10 17:37:50 +0300
commit74795f1e35b624cdba451aeaea0af2f1211e4a91 (patch)
tree55aa5afb723e1d75c135a9ba9703047f3f881a6b /test/py/tests/test_fs/test_squashfs/sqfs_common.py
parent7d080773347c1f6e0e896d9284134a2a411155d6 (diff)
downloadu-boot-74795f1e35b624cdba451aeaea0af2f1211e4a91.tar.xz
test/py: fix SquashFS tests
Use "cons.config.build_dir" instead of writing to the source directory (read-only). This will fix the test failures in Azure. Signed-off-by: Joao Marcos Costa <joaomarcos.costa@bootlin.com>
Diffstat (limited to 'test/py/tests/test_fs/test_squashfs/sqfs_common.py')
-rw-r--r--test/py/tests/test_fs/test_squashfs/sqfs_common.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/py/tests/test_fs/test_squashfs/sqfs_common.py b/test/py/tests/test_fs/test_squashfs/sqfs_common.py
index 9ef7b19ad9..2dc344d1b2 100644
--- a/test/py/tests/test_fs/test_squashfs/sqfs_common.py
+++ b/test/py/tests/test_fs/test_squashfs/sqfs_common.py
@@ -20,9 +20,9 @@ def sqfs_generate_file(path, size):
file.close()
# generate image with three files and a symbolic link
-def sqfs_generate_image():
- src = "test/py/tests/test_fs/test_squashfs/sqfs_src/"
- dest = "test/py/tests/test_fs/test_squashfs/sqfs"
+def sqfs_generate_image(cons):
+ src = os.path.join(cons.config.build_dir, "sqfs_src/")
+ dest = os.path.join(cons.config.build_dir, "sqfs")
os.mkdir(src)
sqfs_generate_file(src + "frag_only", 100)
sqfs_generate_file(src + "blks_frag", 5100)
@@ -31,9 +31,9 @@ def sqfs_generate_image():
os.system("mksquashfs " + src + " " + dest + " -b 4096 -always-use-fragments")
# removes all files created by sqfs_generate_image()
-def sqfs_clean():
- src = "test/py/tests/test_fs/test_squashfs/sqfs_src/"
- dest = "test/py/tests/test_fs/test_squashfs/sqfs"
+def sqfs_clean(cons):
+ src = os.path.join(cons.config.build_dir, "sqfs_src/")
+ dest = os.path.join(cons.config.build_dir, "sqfs")
os.remove(src + "frag_only")
os.remove(src + "blks_frag")
os.remove(src + "blks_only")