Skip to content

Commit

Permalink
Move the CA tests to a sub-directory
Browse files Browse the repository at this point in the history
Requires a slight update to the test infra to work properly
  • Loading branch information
thufschmitt committed Mar 1, 2021
1 parent 73b3e6c commit 79411b8
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion mk/run_test.sh
Expand Up @@ -14,7 +14,7 @@ if [ -t 1 ]; then
yellow=""
normal=""
fi
(cd $(dirname $1) && env ${TESTS_ENVIRONMENT} init.sh 2>/dev/null > /dev/null)
(cd tests && env ${TESTS_ENVIRONMENT} init.sh 2>/dev/null > /dev/null)
log="$(cd $(dirname $1) && env ${TESTS_ENVIRONMENT} $(basename $1) 2>&1)"
status=$?
if [ $status -eq 0 ]; then
Expand Down
2 changes: 1 addition & 1 deletion mk/tests.mk
Expand Up @@ -8,7 +8,7 @@ define run-install-test

.PHONY: $1.test
$1.test: $1 $(test-deps)
@env TEST_NAME=$(notdir $(basename $1)) TESTS_ENVIRONMENT="$(tests-environment)" mk/run_test.sh $1 < /dev/null
@env TEST_NAME=$(basename $1) TESTS_ENVIRONMENT="$(tests-environment)" mk/run_test.sh $1 < /dev/null

endef

Expand Down
2 changes: 2 additions & 0 deletions tests/content-addressed.sh → tests/ca/build.sh
Expand Up @@ -61,7 +61,9 @@ testNixCommand () {

# Disabled until we have it properly working
# testRemoteCache
clearStore
testDeterministicCA
clearStore
testCutoff
testGC
testNixCommand
1 change: 1 addition & 0 deletions tests/ca/common.sh
@@ -0,0 +1 @@
source ../common.sh
@@ -1,4 +1,4 @@
with import ./config.nix;
with import ../config.nix;

{ seed ? 0 }:
# A simple content-addressed derivation.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/common.sh.in
Expand Up @@ -11,7 +11,7 @@ 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_CONF_DIR=$TEST_ROOT/etc
export NIX_DAEMON_SOCKET_PATH=$TEST_ROOT/daemon-socket
export NIX_DAEMON_SOCKET_PATH=$TEST_ROOT/dSocket
unset NIX_USER_CONF_FILES
export _NIX_TEST_SHARED=$TEST_ROOT/shared
if [[ -n $NIX_STORE ]]; then
Expand Down
6 changes: 3 additions & 3 deletions tests/local.mk
Expand Up @@ -38,10 +38,10 @@ nix_tests = \
recursive.sh \
describe-stores.sh \
flakes.sh \
content-addressed.sh \
nix-copy-content-addressed.sh \
build.sh \
compute-levels.sh
compute-levels.sh \
ca/build.sh \
ca/nix-copy.sh
# parallel.sh

install-tests += $(foreach x, $(nix_tests), tests/$(x))
Expand Down

0 comments on commit 79411b8

Please sign in to comment.