forked from OERV-BSP/u-boot
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>
This commit is contained in:
committed by
Tom Rini
parent
7d08077334
commit
74795f1e35
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user