summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2013-02-07 16:00:24 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2013-02-08 11:08:15 +0000
commitaa2f9210ef5e623b1331049c83d429f14a17771a (patch)
tree8227acff1f3448a1252f3d4b10cdfc57d0d44909 /tests
parentd284a233c46611daa4bea6fd195426cf3d1cb118 (diff)
downloadmorph-aa2f9210ef5e623b1331049c83d429f14a17771a.tar.gz
Remove test for name mismatches
No longer possible for this to happen.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/name-clash.script66
1 files changed, 0 insertions, 66 deletions
diff --git a/tests/name-clash.script b/tests/name-clash.script
deleted file mode 100755
index b1df563c..00000000
--- a/tests/name-clash.script
+++ /dev/null
@@ -1,66 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) 2012 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, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-
-## When there are two chunks with the same "name" set in the morphology,
-## only the first built should be used. This can cause build failures when
-## the wrong name is set and could be a vector for including dodgy data in
-## a system.
-
-set -eu
-
-( cd "$DATADIR/chunk-repo"
- git checkout --quiet farrokh
- cat >goodbye <<EOF
-#!/bin/sh
-echo Goodbye world, muahahahaha
-EOF
- git add goodbye
-
- # add a morph with the same "name" but different commands
- cat >goodbye.morph <<EOF
-{
- "name": "hello",
- "kind": "chunk",
- "build-system": "dummy",
- "install-commands": [
- "install -d \\"\$DESTDIR\\"/bin",
- "install goodbye \\"\$DESTDIR\\"/bin/hello"
- ]
-}
-EOF
- git add goodbye.morph
-
- git commit --quiet -m "add a totally safe script"
-)
-
-# build the dodgy chunk
-"$SRCDIR/scripts/test-morph" build-morphology \
- test:chunk-repo farrokh goodbye
-
-# build a stratum
-"$SRCDIR/scripts/test-morph" build-morphology \
- test:morphs-repo master hello-stratum
-
-# unpack it and check the contents
-INSTDIR="$DATADIR"/unpack
-mkdir -p "$INSTDIR"
-"$SRCDIR/scripts/assemble-stratum" --cachedir "$DATADIR/cache" \
- "$DATADIR/cache/artifacts/"*hello-stratum \
- "$DATADIR/stratum.tar" hello-stratum
-tar -C "$INSTDIR" -xhf "$DATADIR/stratum.tar"
-test "$("$INSTDIR"/bin/hello)" = "hello, world"