Correct environment variable settings when running tests
$PWD doesn’t work in Makefiles – Make expands $P (to the empty string) and passes `WD` literally to the shell. Replace `$PWD` with `$(shell pwd)`.
Loading
Please register or sign in to comment