2006-03-01 12:15:33 +00:00
|
|
|
|
set -e
|
|
|
|
|
|
2011-10-10 21:11:08 +00:00
|
|
|
|
export TOP=$(pwd)/..
|
|
|
|
|
|
2006-03-01 12:15:33 +00:00
|
|
|
|
export TEST_ROOT=$(pwd)/test-tmp
|
2006-07-21 12:46:54 +00:00
|
|
|
|
export NIX_STORE_DIR
|
2007-08-14 13:43:51 +00:00
|
|
|
|
if ! NIX_STORE_DIR=$(readlink -f $TEST_ROOT/store 2> /dev/null); then
|
2006-07-21 12:46:54 +00:00
|
|
|
|
# Maybe the build directory is symlinked.
|
|
|
|
|
export NIX_IGNORE_SYMLINK_STORE=1
|
|
|
|
|
NIX_STORE_DIR=$TEST_ROOT/store
|
|
|
|
|
fi
|
2006-03-01 12:15:33 +00: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 21:11:08 +00:00
|
|
|
|
export NIX_MANIFESTS_DIR=$TEST_ROOT/var/nix/manifests
|
2006-07-20 12:17:25 +00:00
|
|
|
|
export NIX_ROOT_FINDER=
|
2006-03-01 12:15:33 +00:00
|
|
|
|
export SHARED=$TEST_ROOT/shared
|
|
|
|
|
|
2011-10-10 21:11:08 +00:00
|
|
|
|
export PATH=$NIX_BIN_DIR:$TOP/scripts:$PATH
|
|
|
|
|
|
2011-07-20 11:50:13 +00:00
|
|
|
|
export NIX_REMOTE=
|
2006-12-02 14:33:39 +00:00
|
|
|
|
|
2006-03-01 12:15:33 +00: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 11:14:30 +00:00
|
|
|
|
export PERL5LIB=$TOP/perl/lib:$PERL5LIB
|
2011-10-10 21:11:08 +00:00
|
|
|
|
export NIX_BZIP2="@bzip2_bin_test@/bzip2"
|
|
|
|
|
if test "${NIX_BZIP2:0:1}" != "/"; then
|
|
|
|
|
NIX_BZIP2=`pwd`/${NIX_BZIP2}
|
2006-04-25 10:45:53 +00:00
|
|
|
|
fi
|
2006-03-01 12:15:33 +00:00
|
|
|
|
export dot=@dot@
|
2006-03-01 14:17:00 +00:00
|
|
|
|
export xmllint="@xmllint@"
|
|
|
|
|
export xmlflags="@xmlflags@"
|
2006-03-01 13:25:08 +00:00
|
|
|
|
export xsltproc="@xsltproc@"
|
2010-02-24 11:06:17 +00:00
|
|
|
|
export sqlite3="@sqlite_bin@/bin/sqlite3"
|
2009-03-25 16:11:04 +00:00
|
|
|
|
export SHELL="@shell@"
|
2006-03-01 12:15:33 +00:00
|
|
|
|
|
|
|
|
|
export version=@version@
|
2006-03-01 15:46:22 +00:00
|
|
|
|
export system=@system@
|
2006-03-01 12:51:18 +00:00
|
|
|
|
|
2006-03-01 14:26:03 +00:00
|
|
|
|
readLink() {
|
|
|
|
|
ls -l "$1" | sed 's/.*->\ //'
|
|
|
|
|
}
|
2006-09-21 18:54:08 +00:00
|
|
|
|
|
2009-03-18 16:35:35 +00:00
|
|
|
|
clearProfiles() {
|
|
|
|
|
profiles="$NIX_STATE_DIR"/profiles
|
|
|
|
|
rm -f $profiles/*
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-21 18:54:08 +00: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 21:32:34 +00:00
|
|
|
|
nix-store --init
|
2009-03-18 16:35:35 +00:00
|
|
|
|
clearProfiles
|
|
|
|
|
rm -f "$NIX_STATE_DIR"/gcroots/auto/*
|
|
|
|
|
rm -f "$NIX_STATE_DIR"/gcroots/ref
|
2006-09-21 18:54:08 +00:00
|
|
|
|
}
|
2007-08-13 13:15:02 +00:00
|
|
|
|
|
|
|
|
|
clearManifests() {
|
|
|
|
|
rm -f $NIX_STATE_DIR/manifests/*
|
|
|
|
|
}
|
2009-03-17 17:38:32 +00:00
|
|
|
|
|
2011-07-20 11:50:13 +00:00
|
|
|
|
startDaemon() {
|
2011-10-11 11:14:30 +00: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 21:32:34 +00:00
|
|
|
|
nix-worker --daemon &
|
2011-10-11 11:14:30 +00: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 11:50:13 +00:00
|
|
|
|
pidDaemon=$!
|
|
|
|
|
trap "kill -9 $pidDaemon" EXIT
|
|
|
|
|
export NIX_REMOTE=daemon
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
killDaemon() {
|
|
|
|
|
kill -9 $pidDaemon
|
|
|
|
|
wait $pidDaemon || true
|
|
|
|
|
trap "" EXIT
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-17 17:38:32 +00:00
|
|
|
|
fail() {
|
|
|
|
|
echo "$1"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|