We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d3eaa6 commit cc5d420Copy full SHA for cc5d420
test/Makefile.testdir
@@ -2,11 +2,11 @@
2
3
all:
4
@$(MAKE) -s --no-print-directory -C ../.. all
5
- @V=$(V) basedir=../.. testdir=../ ./test.sh --all
+ @V=$(V) basedir="$(realpath ../..)" testdir="$(realpath ../)" ./test.sh --all
6
setup:
7
@$(MAKE) --no-print-directory -C ../.. all
8
- @basedir=../.. testdir=../ ./test.sh --setup
+ @basedir="$(realpath ../..)" testdir="$(realpath ../)" ./test.sh --setup
9
clean:
10
- @basedir=../.. testdir=../ ./test.sh --clean
+ @basedir="$(realpath ../..)" testdir="$(realpath ../)" ./test.sh --clean
11
run:
12
- @basedir=../.. testdir=../ ./test.sh --run
+ @basedir="$(realpath ../..)" testdir="$(realpath ../)" ./test.sh --run
0 commit comments