summaryrefslogtreecommitdiff
path: root/tests/integration/sandbox-bwrap.py
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2019-12-10 12:34:19 +0000
committerJürg Billeter <j@bitron.ch>2019-12-10 12:34:19 +0000
commit4ad66cd51f36319feef0ed0824e303f3f64c7422 (patch)
tree0a71cc445f0fdd3f0cfa14466a0ff7d11adc3743 /tests/integration/sandbox-bwrap.py
parent393fd2d458181cb9cbf30133dc5bbac8659db84b (diff)
parent9fe6c9e63a50edd80c792608b6c6bc63ff2e2e1f (diff)
downloadbuildstream-4ad66cd51f36319feef0ed0824e303f3f64c7422.tar.gz
Merge branch 'juerg/buildbox-run' into 'master'
Add buildbox-run sandboxing backend See merge request BuildStream/buildstream!1738
Diffstat (limited to 'tests/integration/sandbox-bwrap.py')
-rw-r--r--tests/integration/sandbox-bwrap.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/integration/sandbox-bwrap.py b/tests/integration/sandbox-bwrap.py
index 2908752de..a6312914b 100644
--- a/tests/integration/sandbox-bwrap.py
+++ b/tests/integration/sandbox-bwrap.py
@@ -55,13 +55,3 @@ def test_sandbox_bwrap_return_subprocess(cli, datafiles):
result = cli.run(project=project, args=["build", element_name])
result.assert_task_error(error_domain=ErrorDomain.SANDBOX, error_reason="command-failed")
assert "sandbox-bwrap/command-exit-42.bst|Command failed with exitcode 42" in result.stderr
-
-
-@pytest.mark.skipif(HAVE_SANDBOX != "bwrap", reason="Only available with bubblewrap")
-@pytest.mark.datafiles(DATA_DIR)
-def test_sandbox_bwrap_dev_shm(cli, datafiles):
- project = str(datafiles)
- element_name = "sandbox-bwrap/test-dev-shm.bst"
-
- result = cli.run(project=project, args=["build", element_name])
- assert result.exit_code == 0