summaryrefslogtreecommitdiff
path: root/yarns
diff options
context:
space:
mode:
Diffstat (limited to 'yarns')
-rw-r--r--yarns/architecture.yarn4
-rw-r--r--yarns/implementations.yarn4
2 files changed, 4 insertions, 4 deletions
diff --git a/yarns/architecture.yarn b/yarns/architecture.yarn
index d8b1182c..080776f8 100644
--- a/yarns/architecture.yarn
+++ b/yarns/architecture.yarn
@@ -14,7 +14,7 @@ Morph Architecture Tests
GIVEN a git server
AND a system called base-system-testarch.morph for the test architecture in the git server
WHEN the user clones definitions
- AND the user attempts to cross-bootstrap the system base-system-testarch.morph in branch master of repo test:definitions to the arch testarch
+ AND the user attempts to cross-bootstrap the system base-system-testarch.morph in branch master to the arch testarch
THEN morph succeeded
FINALLY the git server is shut down
@@ -22,7 +22,7 @@ Morph Architecture Tests
GIVEN a git server
AND a system called base-system-testarch.morph for the test architecture in the git server
WHEN the user clones definitions
- AND the user attempts to cross-bootstrap the system base-system-testarch.morph in branch master of repo test:definitions to the arch unknown-archicture
+ AND the user attempts to cross-bootstrap the system base-system-testarch.morph in branch master to the arch unknown-archicture
THEN morph failed
AND the cross-bootstrap error message includes the string "Unsupported architecture "unknown-archicture"
FINALLY the git server is shut down
diff --git a/yarns/implementations.yarn b/yarns/implementations.yarn
index 186fe316..eab162b3 100644
--- a/yarns/implementations.yarn
+++ b/yarns/implementations.yarn
@@ -660,10 +660,10 @@ Implementation sections for building
Implementation sections for cross-bootstrapping
===============================================
- IMPLEMENTS WHEN the user (attempts to )?cross-bootstraps? the system (\S+) in branch (\S+) of repo (\S+) to the arch (\S+)
+ IMPLEMENTS WHEN the user (attempts to )?cross-bootstraps? the system (\S+) in branch (\S+) to the arch (\S+)
cd "$DATADIR/definitions"
git checkout "$MATCH_3"
- set -- cross-bootstrap "$MATCH_5" "$MATCH_4" "$MATCH_3" "$MATCH_2"
+ set -- cross-bootstrap "$MATCH_4" "$MATCH_2"
if [ "$MATCH_1" != "attempts to " ]; then run_morph "$@"
else attempt_morph "$@"; fi
echo $@ >&2