We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to find executable test: No such file or directory
test is not installed when an image is prepared, so the test fails to find it. This could be fixed by applying the following patch:
test
diff --git a/test/test-functions b/test/test-functions index 853ef5d31..a2f82725d 100644 --- a/test/test-functions +++ b/test/test-functions @@ -21,7 +21,7 @@ if ! ROOTLIBDIR=$(pkg-config --variable=systemdutildir systemd); then ROOTLIBDIR=/usr/lib/systemd fi -BASICTOOLS="sh bash setsid loadkeys setfont login sulogin gzip sleep echo mount umount cryptsetup date dmsetup modprobe sed cmp tee rm true false" +BASICTOOLS="test sh bash setsid loadkeys setfont login sulogin gzip sleep echo mount umount cryptsetup date dmsetup modprobe sed cmp tee rm true false" DEBUGTOOLS="df free ls stty cat ps ln ip route dmesg dhclient mkdir cp ping dhclient strace less grep id tty touch du sort hostname find" STATEDIR="${BUILD_DIR:-.}/test/$(basename $(dirname $(realpath $0)))"
but it would be better to fix install_execs somehow.
install_execs
The text was updated successfully, but these errors were encountered:
That patch does not look to bad. Can you submit it as PR to unbreak CI, and then we can think about a long-term solution?
Sorry, something went wrong.
tests: install test as part of BASICTOOLS
6492b1f
This makes TEST-19-DELEGATE, which is currently failing, work. Closes systemd#7425.
tests: install test as part of BASICTOOLS (#7434)
71050ac
This makes TEST-19-DELEGATE, which is currently failing, work. Closes #7425.
No branches or pull requests
test
is not installed when an image is prepared, so the test fails to find it. This could be fixed by applying the following patch:but it would be better to fix
install_execs
somehow.The text was updated successfully, but these errors were encountered: