mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
py: tests: Bind should run only on sandbox
Disable test to run on any other platform than sandbox. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Signed-off-by: Michal Simek <michal.simek@amd.com> Reviewed-by: Simon Glass <sjg@chromium.org> Link: https://lore.kernel.org/r/786bfdfda7dee4494e39c3fff699970ecd623116.1657191142.git.michal.simek@amd.com
This commit is contained in:
parent
a5bd1fe863
commit
2075215dd9
1 changed files with 2 additions and 1 deletions
|
@ -25,7 +25,7 @@ def in_tree(response, name, uclass, drv, depth, last_child):
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
@pytest.mark.boardspec('sandbox')
|
||||||
@pytest.mark.buildconfigspec('cmd_bind')
|
@pytest.mark.buildconfigspec('cmd_bind')
|
||||||
def test_bind_unbind_with_node(u_boot_console):
|
def test_bind_unbind_with_node(u_boot_console):
|
||||||
|
|
||||||
|
@ -117,6 +117,7 @@ def get_next_line(tree, name):
|
||||||
break
|
break
|
||||||
return child_line
|
return child_line
|
||||||
|
|
||||||
|
@pytest.mark.boardspec('sandbox')
|
||||||
@pytest.mark.buildconfigspec('cmd_bind')
|
@pytest.mark.buildconfigspec('cmd_bind')
|
||||||
def test_bind_unbind_with_uclass(u_boot_console):
|
def test_bind_unbind_with_uclass(u_boot_console):
|
||||||
#bind /bind-test
|
#bind /bind-test
|
||||||
|
|
Loading…
Reference in a new issue