From c172e2dff286e9dc3b7b7924f99e53e5e9a5ceff Mon Sep 17 00:00:00 2001 From: William Salmon Date: Fri, 14 Sep 2018 11:37:47 +0100 Subject: New Integration test for workspace command-subdir Build stream was only creating command-subdir for non workspace builds this has now been fixed, and this regression test should support the feature. --- .../project/elements/workspace/workspace-commanddir.bst | 17 +++++++++++++++++ tests/integration/workspace.py | 15 +++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 tests/integration/project/elements/workspace/workspace-commanddir.bst 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) -- cgit v1.2.1