summaryrefslogtreecommitdiff
path: root/test/py/tests/test_fs/test_squashfs/test_sqfs_ls.py
blob: dc31f1a50ed07b7e7da91774a3d10c6f75e0f016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2020 Bootlin
# Author: Joao Marcos Costa <joaomarcos.costa@bootlin.com>

import os
import pytest
from sqfs_common import *

@pytest.mark.boardspec('sandbox')
@pytest.mark.buildconfigspec('cmd_fs_generic')
@pytest.mark.buildconfigspec('cmd_squashfs')
@pytest.mark.buildconfigspec('fs_squashfs')
@pytest.mark.requiredtool('mksquashfs')
def test_sqfs_ls(u_boot_console):
    sqfs_generate_image()
    path = "test/py/tests/test_fs/test_squashfs/sqfs"
    try:
        output = u_boot_console.run_command("host bind 0 " + path)
        output = u_boot_console.run_command("sqfsls host 0")
        assert "4 file(s), 0 dir(s)" in output
        assert "<SYM>   sym" in output
        output = u_boot_console.run_command("sqfsls host 0 xxx")
        assert "** Cannot find directory. **" in output
    except:
        sqfs_clean()
    sqfs_clean()