From ed01c071973ae591366fb68af89f2c79494f0452 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 22 Mar 2012 15:29:56 +0000 Subject: Add helper script to be used from tests to run morph The helper script makes it easier for the test scripts to invoke morph. --- tests/morph | 24 ++++++++++++++++++++++++ tests/setup | 11 +++++++++++ 2 files changed, 35 insertions(+) create mode 100755 tests/morph (limited to 'tests') diff --git a/tests/morph b/tests/morph new file mode 100755 index 00000000..8d78379f --- /dev/null +++ b/tests/morph @@ -0,0 +1,24 @@ +#!/bin/sh +# +# Run morph in a way suitable for tests. +# +# 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. + +set -e + +PATH="$(pwd):$PATH" +./morph --no-default-config --config="$DATADIR/morph.conf" "$@" || \ + cat "$DATADIR/morph.log" 1>&2 diff --git a/tests/setup b/tests/setup index 3711f050..f20f6892 100755 --- a/tests/setup +++ b/tests/setup @@ -115,3 +115,14 @@ git add hello-system.morph git commit --quiet -m "add morphs" + +# Create a morph configuration file. +cat < "$DATADIR/morph.conf" +[config] +git-base-url = file://$DATADIR/ +cachedir = $DATADIR/cache +log = $DATADIR/morph.log +keep-path = true +no-distcc = true +EOF + -- cgit v1.2.1