summaryrefslogtreecommitdiff
path: root/tests/examples/running-commands.py
diff options
context:
space:
mode:
authorRaoul Hidalgo Charman <raoul.hidalgocharman@codethink.co.uk>2018-11-22 17:27:20 +0000
committerRaoul Hidalgo Charman <raoul.hidalgocharman@codethink.co.uk>2018-12-05 10:44:02 +0000
commit9f75c274a56855c4c6dd625c2d4216d82febde75 (patch)
tree6237c037779217e4b664a4ba7381170d672dce42 /tests/examples/running-commands.py
parent1ad35fcd1bbb4a89e177da44303cf95e5a3b659d (diff)
downloadbuildstream-9f75c274a56855c4c6dd625c2d4216d82febde75.tar.gz
optionarch.py: update to use same arch names as SandboxConfig
Also update tests to be consistent with this
Diffstat (limited to 'tests/examples/running-commands.py')
-rw-r--r--tests/examples/running-commands.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/examples/running-commands.py b/tests/examples/running-commands.py
index 3e679f9c2..61e23fd9c 100644
--- a/tests/examples/running-commands.py
+++ b/tests/examples/running-commands.py
@@ -12,8 +12,8 @@ DATA_DIR = os.path.join(
)
-@pytest.mark.skipif(MACHINE_ARCH != 'x86_64',
- reason='Examples are writtent for x86_64')
+@pytest.mark.skipif(MACHINE_ARCH != 'x86-64',
+ reason='Examples are writtent for x86-64')
@pytest.mark.skipif(not IS_LINUX or not HAVE_BWRAP, reason='Only available on linux with bubblewrap')
@pytest.mark.datafiles(DATA_DIR)
def test_running_commands_build(cli, tmpdir, datafiles):
@@ -25,8 +25,8 @@ def test_running_commands_build(cli, tmpdir, datafiles):
# Test running the executable
-@pytest.mark.skipif(MACHINE_ARCH != 'x86_64',
- reason='Examples are writtent for x86_64')
+@pytest.mark.skipif(MACHINE_ARCH != 'x86-64',
+ reason='Examples are writtent for x86-64')
@pytest.mark.skipif(not IS_LINUX or not HAVE_BWRAP, reason='Only available on linux with bubblewrap')
@pytest.mark.datafiles(DATA_DIR)
def test_running_commands_run(cli, tmpdir, datafiles):