diff options
-rw-r--r-- | tests/integration/project/elements/workspace/workspace-commanddir.bst | 17 | ||||
-rw-r--r-- | tests/integration/workspace.py | 15 |
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) |