hydra/tests/Makefile.am

47 lines
1.3 KiB
Makefile
Raw Normal View History

2011-11-30 17:03:50 +00:00
TESTS_ENVIRONMENT = \
BZR_HOME="$(abs_builddir)/data" \
2015-06-25 13:51:44 +00:00
HYDRA_DBI="dbi:Pg:dbname=hydra-test-suite;port=6433" \
2011-11-30 17:03:50 +00:00
HYDRA_DATA="$(abs_builddir)/data" \
2011-03-16 16:18:59 +00:00
HYDRA_HOME="$(top_srcdir)/src" \
HYDRA_CONFIG= \
NIX_REMOTE= \
2016-10-06 15:19:16 +00:00
NIX_REMOTE_SYSTEMS= \
2011-03-17 13:25:27 +00:00
NIX_CONF_DIR="$(abs_builddir)/nix/etc/nix" \
2011-03-17 07:43:33 +00:00
NIX_STATE_DIR="$(abs_builddir)/nix/var/nix" \
2011-04-19 11:55:49 +00:00
NIX_MANIFESTS_DIR="$(abs_builddir)/nix/var/nix/manifests" \
2011-03-17 07:43:33 +00:00
NIX_STORE_DIR="$(abs_builddir)/nix/store" \
NIX_LOG_DIR="$(abs_builddir)/nix/var/log/nix" \
NIX_BUILD_HOOK= \
PGHOST=/tmp \
2017-05-24 14:00:38 +00:00
PERL5LIB="$(srcdir):$(abs_top_srcdir)/src/lib:$$PERL5LIB" \
PATH=$(abs_top_srcdir)/src/hydra-evaluator:$(abs_top_srcdir)/src/script:$(abs_top_srcdir)/src/hydra-eval-jobs:$(abs_top_srcdir)/src/hydra-queue-runner:$$PATH \
2013-01-22 13:41:02 +00:00
perl -w
2011-03-16 10:27:32 +00:00
EXTRA_DIST = \
$(wildcard *.pm) \
$(wildcard jobs/*.nix) \
$(wildcard jobs/*.sh) \
$(TESTS)
2011-03-16 08:50:31 +00:00
TESTS = \
set-up.pl \
evaluation-tests.pl \
tear-down.pl
2011-03-16 13:18:12 +00:00
check_SCRIPTS = repos
2011-03-16 08:50:31 +00:00
db.sqlite: $(top_srcdir)/src/sql/hydra-sqlite.sql
2012-03-12 20:06:42 +00:00
$(TESTS_ENVIRONMENT) $(top_srcdir)/src/script/hydra-init
2011-03-16 08:50:31 +00:00
repos: dirs
2011-03-17 09:14:48 +00:00
dirs:
2011-03-16 09:46:47 +00:00
mkdir -p data
2011-03-16 10:50:50 +00:00
touch data/hydra.conf
2011-03-16 10:27:32 +00:00
mkdir -p nix
2011-03-17 13:25:27 +00:00
mkdir -p nix/etc/nix
touch nix/etc/nix/nix.conf
tests: disable sandbox Prior, tests would all fail to build, causing, roughly, the following error (roughly, because I added some debug log messages :)): ok 68 - Evaluating jobs/build-products.nix should result in 2 builds Queue runner stderr: using 4185024512 bytes for the NAR buffer locking path '/build/source/tests/data/queue-runner/lock' lock acquired on '/build/source/tests/data/queue-runner/lock.lock' warning: unknown setting 'max-connection-age' warning: unknown setting 'max-connections' dispatcher woken up dispatcher woken up dispatcher sleeping for 7674380800s adding new machine ‘localhost’ dispatcher woken up checking the queue for builds > 0... dispatcher sleeping for 7674380800s sending notification about build 1 loading build 18 (tests:build-products:simple) considering derivation ‘/build/source/tests/nix/store/24h0i450d4k00a4jhhk6r7qpqdvzskw6-build-product-simple.drv’ sending notification about build 2 creating build step ‘/build/source/tests/nix/store/24h0i450d4k00a4jhhk6r7qpqdvzskw6-build-product-simple.drv’ added build 18 (top-level step /build/source/tests/nix/store/24h0i450d4k00a4jhhk6r7qpqdvzskw6-build-product-simple.drv, 1 new steps) got 1 new runnable steps from 1 new builds step ‘/build/source/tests/nix/store/24h0i450d4k00a4jhhk6r7qpqdvzskw6-build-product-simple.drv’ is now runnable dispatcher woken up dispatcher sleeping for 7674380800s performing step ‘/build/source/tests/nix/store/24h0i450d4k00a4jhhk6r7qpqdvzskw6-build-product-simple.drv’ 1 times on ‘localhost’ (needed by build 18 and 0 others) sending closure of ‘/build/source/tests/nix/store/24h0i450d4k00a4jhhk6r7qpqdvzskw6-build-product-simple.drv’ to ‘localhost’ building ‘/build/source/tests/nix/store/24h0i450d4k00a4jhhk6r7qpqdvzskw6-build-product-simple.drv’ on ‘localhost’ killing process 10462 marking build 18 as failed finishing build step ‘/build/source/tests/nix/store/24h0i450d4k00a4jhhk6r7qpqdvzskw6-build-product-simple.drv’ ok 69 - Build 'simple' from jobs/build-products.nix should exit with code 0 ok 70 - newbuild->finished was '1' instead of 1 not ok 71 - newbuild->buildstatus was '1' instead of 0 not ok 72 - Build 'simple' from jobs/build-products.nix should have buildstatus 0 Can't call method "name" on an undefined value at ./evaluation-tests.pl line 173. FAIL: evaluation-tests.pl
2019-02-01 03:29:07 +00:00
echo "sandbox = false" >> nix/etc/nix/nix.conf
2011-03-16 10:27:32 +00:00
mkdir -p nix/store
mkdir -p nix/var