summaryrefslogtreecommitdiff
path: root/tests.branching/checkout-non-aliased-repos.script
diff options
context:
space:
mode:
authorTiago Gomes <tiago.gomes@codethink.co.uk>2015-11-23 14:18:40 +0000
committerTiago Gomes <tiago.gomes@codethink.co.uk>2015-11-24 09:56:17 +0000
commitcbc3d789a4573704863de3a0247f55eda8b28638 (patch)
treed2ed4d405d2ca790826c4190b40c1699fbf4d46d /tests.branching/checkout-non-aliased-repos.script
parent822d5415edc61fafeb8709e27b6fb1a2ddd3b288 (diff)
downloadmorph-cbc3d789a4573704863de3a0247f55eda8b28638.tar.gz
Remove tests for branch-and-merge plugin
Change-Id: Ie66b543eb67282c08a2651062727a4583057ee2d
Diffstat (limited to 'tests.branching/checkout-non-aliased-repos.script')
-rwxr-xr-xtests.branching/checkout-non-aliased-repos.script51
1 files changed, 0 insertions, 51 deletions
diff --git a/tests.branching/checkout-non-aliased-repos.script b/tests.branching/checkout-non-aliased-repos.script
deleted file mode 100755
index 4b2ac1c2..00000000
--- a/tests.branching/checkout-non-aliased-repos.script
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/bin/bash
-#
-# Copyright (C) 2012,2015 Codethink Limited
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program. If not, see <http://www.gnu.org/licenses/>.
-
-
-## Verify that "morph checkout" works with repos that are not aliased.
-## This test in particular verifies that URI schemes are stripped off
-## and that the .git suffix is only removed at the end if it is actually
-## present.
-
-set -eu
-
-REPO_WITH_SUFFIX="file://$DATADIR/morphs.git"
-REPO_WITHOUT_SUFFIX="file://$DATADIR/morphs"
-
-TEMP_DIR=$(dirname "$DATADIR")
-
-cd "$DATADIR/workspace"
-
-"$SRCDIR/scripts/test-morph" init
-"$SRCDIR/scripts/test-morph" checkout "$REPO_WITH_SUFFIX" master
-
-test -d "$DATADIR/workspace/master/$DATADIR/morphs"
-
-echo "Current branches of repo with suffix:"
-"$SRCDIR/scripts/run-git-in" master/"${DATADIR:1}"/morphs branch
-
-cd "$DATADIR"
-rm -rf "$DATADIR/workspace"
-mkdir "$DATADIR/workspace"
-cd "$DATADIR/workspace"
-
-"$SRCDIR/scripts/test-morph" init
-"$SRCDIR/scripts/test-morph" checkout "$REPO_WITHOUT_SUFFIX" master
-
-test -d "$DATADIR/workspace/master/$DATADIR/morphs"
-
-echo "Current branches of repo without suffix:"
-"$SRCDIR/scripts/run-git-in" master/"${DATADIR:1}"/morphs branch