Hi! > $PWD is not the correct path. It should be set as follows: > > testdir=$(dirname $0) > export PATH=$PATH:$testdir:$testdir/tests/ This does not work for tests that have .needs_tmpdir because $(dirname $0) is '.' I suppose that we need realpath as well: testdir=$(realpath $(dirname $0)) -- Cyril Hrubis chrubis@suse.cz