summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Salmon <will.salmon@codethink.co.uk>2018-09-14 11:37:47 +0100
committerWilliam Salmon <will.salmon@codethink.co.uk>2018-09-14 11:48:06 +0100
commitc172e2dff286e9dc3b7b7924f99e53e5e9a5ceff (patch)
tree26546a08a9751252e56590306bf471790b498c6e
parente60c72ee31a84ee6473591c5e39f643a5fd383d2 (diff)
downloadbuildstream-willsalmon/bugfix/CWDnotcreated.tar.gz
New Integration test for workspace command-subdirwillsalmon/bugfix/CWDnotcreated
Build stream was only creating command-subdir for non workspace builds this has now been fixed, and this regression test should support the feature.
-rw-r--r--tests/integration/project/elements/workspace/workspace-commanddir.bst17
-rw-r--r--tests/integration/workspace.py15
2 files changed, 32 insertions, 0 deletions
diff --git a/tests/integration/project/elements/workspace/workspace-commanddir.bst b/tests/integration/project/elements/workspace/workspace-commanddir.bst
new file mode 100644
index 000000000..d963346d7
--- /dev/null
+++ b/tests/integration/project/elements/workspace/workspace-commanddir.bst
@@ -0,0 +1,17 @@
+kind: manual
+description: Workspace mount test
+
+depends:
+ - filename: base.bst
+ type: build
+
+sources:
+ - kind: local
+ path: files/workspace-mount-src/
+
+variables:
+ command-subdir: build
+
+config:
+ build-commands:
+ - cc -c ../hello.c
diff --git a/tests/integration/workspace.py b/tests/integration/workspace.py
index 102d053fc..321e1bea0 100644
--- a/tests/integration/workspace.py
+++ b/tests/integration/workspace.py
@@ -31,6 +31,21 @@ def test_workspace_mount(cli, tmpdir, datafiles):
assert os.path.exists(os.path.join(cli.directory, 'workspace'))
+@pytest.mark.integration
+@pytest.mark.datafiles(DATA_DIR)
+def test_workspace_commanddir(cli, tmpdir, datafiles):
+ project = os.path.join(datafiles.dirname, datafiles.basename)
+ workspace = os.path.join(cli.directory, 'workspace')
+ element_name = 'workspace/workspace-commanddir.bst'
+
+ res = cli.run(project=project, args=['workspace', 'open', element_name, workspace])
+ assert res.exit_code == 0
+
+ res = cli.run(project=project, args=['build', element_name])
+ assert res.exit_code == 0
+
+ assert os.path.exists(os.path.join(cli.directory, 'workspace'))
+ assert os.path.exists(os.path.join(cli.directory, 'workspace', 'build'))
@pytest.mark.integration
@pytest.mark.datafiles(DATA_DIR)