diff options
author | Jürg Billeter <j@bitron.ch> | 2020-01-22 17:04:13 +0100 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2020-02-11 21:08:59 +0100 |
commit | 04c00da690bce67bd937a71dce5d84a338a0521f (patch) | |
tree | 1761ddfa82253786d7917aaf63d2fd30b8a3a797 /tests | |
parent | 7cd62cbc6e663890a87fad50b224671297e950c3 (diff) | |
download | buildstream-04c00da690bce67bd937a71dce5d84a338a0521f.tar.gz |
_workspaces.py: Drop `prepared`
This will no longer be used in incremental builds. Successful configure
commands will be recorded with a marker file in the buildtree of the
last build artifact.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/frontend/workspace.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/frontend/workspace.py b/tests/frontend/workspace.py index e09dd220a..f6bfb4362 100644 --- a/tests/frontend/workspace.py +++ b/tests/frontend/workspace.py @@ -846,10 +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"}},}, + {"format-version": 4, "workspaces": {"alpha.bst": {"path": "/workspaces/bravo"}},}, { "format-version": BST_WORKSPACE_FORMAT_VERSION, - "workspaces": {"alpha.bst": {"prepared": True, "path": "/workspaces/bravo"}}, + "workspaces": {"alpha.bst": {"path": "/workspaces/bravo"}}, }, ), ], |