2006-03-01 13:15:33 +01:00
|
|
|
|
set -e
|
|
|
|
|
|
2011-10-10 23:11:08 +02:00
|
|
|
|
export TOP=$(pwd)/..
|
|
|
|
|
|
2006-03-01 13:15:33 +01:00
|
|
|
|
export TEST_ROOT=$(pwd)/test-tmp
|
2006-07-21 14:46:54 +02:00
|
|
|
|
export NIX_STORE_DIR
|
2007-08-14 15:43:51 +02:00
|
|
|
|
if ! NIX_STORE_DIR=$(readlink -f $TEST_ROOT/store 2> /dev/null); then
|
2006-07-21 14:46:54 +02:00
|
|
|
|
# Maybe the build directory is symlinked.
|
|
|
|
|
export NIX_IGNORE_SYMLINK_STORE=1
|
|
|
|
|
NIX_STORE_DIR=$TEST_ROOT/store
|
|
|
|
|
fi
|
2006-03-01 13:15:33 +01:00
|
|
|
|
export NIX_DATA_DIR=$TEST_ROOT/data
|
|
|
|
|
export NIX_LOCALSTATE_DIR=$TEST_ROOT/var
|
|
|
|
|
export NIX_LOG_DIR=$TEST_ROOT/var/log/nix
|
|
|
|
|
export NIX_STATE_DIR=$TEST_ROOT/var/nix
|
|
|
|
|
export NIX_DB_DIR=$TEST_ROOT/db
|
|
|
|
|
export NIX_CONF_DIR=$TEST_ROOT/etc
|
|
|
|
|
export NIX_BIN_DIR=$TEST_ROOT/bin
|
|
|
|
|
export NIX_LIBEXEC_DIR=$TEST_ROOT/bin
|
2011-10-10 23:11:08 +02:00
|
|
|
|
export NIX_MANIFESTS_DIR=$TEST_ROOT/var/nix/manifests
|
2006-07-20 14:17:25 +02:00
|
|
|
|
export NIX_ROOT_FINDER=
|
2006-03-01 13:15:33 +01:00
|
|
|
|
export SHARED=$TEST_ROOT/shared
|
|
|
|
|
|
2011-10-10 23:11:08 +02:00
|
|
|
|
export PATH=$NIX_BIN_DIR:$TOP/scripts:$PATH
|
|
|
|
|
|
2006-03-01 13:15:33 +01:00
|
|
|
|
export REAL_BIN_DIR=@bindir@
|
|
|
|
|
export REAL_LIBEXEC_DIR=@libexecdir@
|
|
|
|
|
export REAL_LOCALSTATE_DIR=@localstatedir@
|
|
|
|
|
export REAL_DATA_DIR=@datadir@
|
|
|
|
|
export REAL_STORE_DIR=@storedir@
|
|
|
|
|
export NIX_BUILD_HOOK=
|
|
|
|
|
export PERL=perl
|
2011-10-11 13:14:30 +02:00
|
|
|
|
export PERL5LIB=$TOP/perl/lib:$PERL5LIB
|
2011-10-10 23:11:08 +02:00
|
|
|
|
export NIX_BZIP2="@bzip2_bin_test@/bzip2"
|
|
|
|
|
if test "${NIX_BZIP2:0:1}" != "/"; then
|
|
|
|
|
NIX_BZIP2=`pwd`/${NIX_BZIP2}
|
2006-04-25 12:45:53 +02:00
|
|
|
|
fi
|
2006-03-01 13:15:33 +01:00
|
|
|
|
export dot=@dot@
|
2006-03-01 15:17:00 +01:00
|
|
|
|
export xmllint="@xmllint@"
|
|
|
|
|
export xmlflags="@xmlflags@"
|
2006-03-01 14:25:08 +01:00
|
|
|
|
export xsltproc="@xsltproc@"
|
2010-02-24 12:06:17 +01:00
|
|
|
|
export sqlite3="@sqlite_bin@/bin/sqlite3"
|
2009-03-25 17:11:04 +01:00
|
|
|
|
export SHELL="@shell@"
|
2006-03-01 13:15:33 +01:00
|
|
|
|
|
|
|
|
|
export version=@version@
|
2006-03-01 16:46:22 +01:00
|
|
|
|
export system=@system@
|
2006-03-01 13:51:18 +01:00
|
|
|
|
|
2006-03-01 15:26:03 +01:00
|
|
|
|
readLink() {
|
|
|
|
|
ls -l "$1" | sed 's/.*->\ //'
|
|
|
|
|
}
|
2006-09-21 20:54:08 +02:00
|
|
|
|
|
2009-03-18 17:35:35 +01:00
|
|
|
|
clearProfiles() {
|
|
|
|
|
profiles="$NIX_STATE_DIR"/profiles
|
|
|
|
|
rm -f $profiles/*
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-21 20:54:08 +02:00
|
|
|
|
clearStore() {
|
|
|
|
|
echo "clearing store..."
|
|
|
|
|
chmod -R +w "$NIX_STORE_DIR"
|
|
|
|
|
rm -rf "$NIX_STORE_DIR"
|
|
|
|
|
mkdir "$NIX_STORE_DIR"
|
|
|
|
|
rm -rf "$NIX_DB_DIR"
|
|
|
|
|
mkdir "$NIX_DB_DIR"
|
2011-10-10 23:32:34 +02:00
|
|
|
|
nix-store --init
|
2009-03-18 17:35:35 +01:00
|
|
|
|
clearProfiles
|
|
|
|
|
rm -f "$NIX_STATE_DIR"/gcroots/auto/*
|
|
|
|
|
rm -f "$NIX_STATE_DIR"/gcroots/ref
|
2006-09-21 20:54:08 +02:00
|
|
|
|
}
|
2007-08-13 15:15:02 +02:00
|
|
|
|
|
|
|
|
|
clearManifests() {
|
|
|
|
|
rm -f $NIX_STATE_DIR/manifests/*
|
|
|
|
|
}
|
2009-03-17 18:38:32 +01:00
|
|
|
|
|
2011-07-20 13:50:13 +02:00
|
|
|
|
startDaemon() {
|
2011-10-11 13:14:30 +02:00
|
|
|
|
# Start the daemon, wait for the socket to appear. !!!
|
|
|
|
|
# ‘nix-worker’ should have an option to fork into the background.
|
|
|
|
|
rm -f $NIX_STATE_DIR/daemon-socket/socket
|
2011-10-10 23:32:34 +02:00
|
|
|
|
nix-worker --daemon &
|
2011-10-11 13:14:30 +02:00
|
|
|
|
for ((i = 0; i < 30; i++)); do
|
|
|
|
|
if [ -e $NIX_STATE_DIR/daemon-socket/socket ]; then break; fi
|
|
|
|
|
sleep 1
|
|
|
|
|
done
|
2011-07-20 13:50:13 +02:00
|
|
|
|
pidDaemon=$!
|
|
|
|
|
trap "kill -9 $pidDaemon" EXIT
|
|
|
|
|
export NIX_REMOTE=daemon
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
killDaemon() {
|
|
|
|
|
kill -9 $pidDaemon
|
|
|
|
|
wait $pidDaemon || true
|
|
|
|
|
trap "" EXIT
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-17 18:38:32 +01:00
|
|
|
|
fail() {
|
|
|
|
|
echo "$1"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|