summaryrefslogtreecommitdiff
path: root/test/end-to-end/just-mr
diff options
context:
space:
mode:
authorPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2024-04-25 10:08:04 +0200
committerPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2024-04-25 15:06:04 +0200
commit6220355db107942f805eef09d9dd3b399f9b0c72 (patch)
tree6b0c97537ab538fee3c3a5ba01c8de3919c364fc /test/end-to-end/just-mr
parent4b05b3faefe25f284909ca24b30180fa86aa172e (diff)
downloadjustbuild-6220355db107942f805eef09d9dd3b399f9b0c72.tar.gz
just serve: Paths in config file should be location objects
Also updates the tests and all relevant documentation accordingly.
Diffstat (limited to 'test/end-to-end/just-mr')
-rw-r--r--test/end-to-end/just-mr/absent-roots.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/end-to-end/just-mr/absent-roots.sh b/test/end-to-end/just-mr/absent-roots.sh
index 853d2149..db3779f5 100644
--- a/test/end-to-end/just-mr/absent-roots.sh
+++ b/test/end-to-end/just-mr/absent-roots.sh
@@ -66,9 +66,12 @@ cat repos.json
# Make the repository available via 'just serve'
cat > .just-servec <<EOF
-{ "repositories": ["${REPO_ROOT}"]
-, "remote service": {"info file": "${INFOFILE}", "pid file": "${PIDFILE}"}
-, "local build root": "${SERVE_LBR}"
+{ "repositories": [{"root": "system", "path": "${REPO_ROOT}"}]
+, "remote service":
+ { "info file": {"root": "system", "path": "${INFOFILE}"}
+ , "pid file": {"root": "system", "path": "${PIDFILE}"}
+ }
+, "local build root": {"root": "system", "path": "${SERVE_LBR}"}
}
EOF
echo "Serve service configuration:"