summaryrefslogtreecommitdiff
path: root/tests.branching/branch-works-anywhere.script
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2012-11-07 15:51:01 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2012-11-07 18:53:48 +0000
commitb599757873d5f05e82647287dfd1387f2426e5c5 (patch)
tree45813def262ff7d58b0e3c9564670fd0907d9ff7 /tests.branching/branch-works-anywhere.script
parent25067e0ff261577da0ace26126c01e2829d7e5b7 (diff)
downloadmorph-b599757873d5f05e82647287dfd1387f2426e5c5.tar.gz
tests: Use test: URL prefix instead of baserock: throughout
Some tests already used test: and in order to be able to share the scripts/setup-3rd-party-strata script they need to all use the same prefix. Using baserock: implies that we are using real code from Baserock, so I picked test: because the tests only ever use mock morphologies and no real code.
Diffstat (limited to 'tests.branching/branch-works-anywhere.script')
-rwxr-xr-xtests.branching/branch-works-anywhere.script10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests.branching/branch-works-anywhere.script b/tests.branching/branch-works-anywhere.script
index 19a00024..5198d7f4 100755
--- a/tests.branching/branch-works-anywhere.script
+++ b/tests.branching/branch-works-anywhere.script
@@ -22,7 +22,7 @@ cd "$DATADIR/workspace"
"$SRCDIR/scripts/test-morph" init
# First, create a branch.
-"$SRCDIR/scripts/test-morph" branch baserock:morphs branch1
+"$SRCDIR/scripts/test-morph" branch test:morphs branch1
echo "Workspace after creating the first branch:"
"$SRCDIR/scripts/list-tree" "$DATADIR/workspace" | grep -v '/\.git/' |
@@ -30,7 +30,7 @@ echo "Workspace after creating the first branch:"
grep -v 'cache/gits/file_[^/]*/'
# Now, create a nother branch from the workspace.
-"$SRCDIR/scripts/test-morph" branch baserock:morphs branch2
+"$SRCDIR/scripts/test-morph" branch test:morphs branch2
echo "Workspace after creating the second branch:"
"$SRCDIR/scripts/list-tree" "$DATADIR/workspace" | grep -v '/\.git/' |
@@ -41,7 +41,7 @@ echo "Workspace after creating the second branch:"
# should not be created in the working directory but in the
# workspace directory.
cd "$DATADIR/workspace/branch1"
-"$SRCDIR/scripts/test-morph" branch baserock:morphs branch3
+"$SRCDIR/scripts/test-morph" branch test:morphs branch3
echo "Workspace after creating the third branch:"
"$SRCDIR/scripts/list-tree" "$DATADIR/workspace" | grep -v '/\.git/' |
@@ -51,8 +51,8 @@ echo "Workspace after creating the third branch:"
# Now, go into the morphs repository of that third branch and
# create a fourth system branch from in there. This, too, should
# end up being created in the toplevel workspace directory.
-cd "$DATADIR/workspace/branch3/baserock:morphs"
-"$SRCDIR/scripts/test-morph" branch baserock:morphs branch4
+cd "$DATADIR/workspace/branch3/test:morphs"
+"$SRCDIR/scripts/test-morph" branch test:morphs branch4
echo "Workspace after creating the fourth branch:"
"$SRCDIR/scripts/list-tree" "$DATADIR/workspace" | grep -v '/\.git/' |