summaryrefslogtreecommitdiff
path: root/tests/frontend
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2020-01-21 19:07:53 +0100
committerJürg Billeter <j@bitron.ch>2020-02-11 21:08:57 +0100
commit7cd62cbc6e663890a87fad50b224671297e950c3 (patch)
tree4d28df4123e80bcf6c5d51a0d21d2f6f02dad1ff /tests/frontend
parent2d0ef3aa9edb9794ac79abda98e6350efbee8b57 (diff)
downloadbuildstream-7cd62cbc6e663890a87fad50b224671297e950c3.tar.gz
_workspaces.py: Drop `running_files`
This will no longer be used in incremental builds. As source and build files are separated now, we can trigger a clean rebuild when dependencies change.
Diffstat (limited to 'tests/frontend')
-rw-r--r--tests/frontend/workspace.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/frontend/workspace.py b/tests/frontend/workspace.py
index 5b3ec7b7c..e09dd220a 100644
--- a/tests/frontend/workspace.py
+++ b/tests/frontend/workspace.py
@@ -846,13 +846,10 @@ def test_list_unsupported_workspace(cli, datafiles, workspace_cfg):
[
# Test loading version 4
(
- {
- "format-version": 4,
- "workspaces": {"alpha.bst": {"prepared": True, "path": "/workspaces/bravo", "running_files": {}}},
- },
+ {"format-version": 4, "workspaces": {"alpha.bst": {"prepared": True, "path": "/workspaces/bravo"}},},
{
"format-version": BST_WORKSPACE_FORMAT_VERSION,
- "workspaces": {"alpha.bst": {"prepared": True, "path": "/workspaces/bravo", "running_files": {}}},
+ "workspaces": {"alpha.bst": {"prepared": True, "path": "/workspaces/bravo"}},
},
),
],