-
-
Notifications
You must be signed in to change notification settings - Fork 381
New issue
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
--shell 'busybox sh', 'zsh --emulate posix', 'bash --posix' #410
Comments
Thank you for reporting this. This should be supported, I agree.
We can use |
I'll work on this. |
It seems that
--shell
needs to be a single word -- which makes it impossible, amongst others, to testbusybox sh
orzsh --emulate sh
orbash --posix
.Sure, for busybox you can symlink, and for zsh / bash, I suppose you can create a stub script (or small C wrapper) that
exec's
the real shell with prepended options. But of course that perturbs the measurement.It might make sense to do simple whitespace splitting of the provided shell string. At most, we might have to handle '
\
' (to allow for shell executables with whitespaces in their paths). Or we could try looking up the shell in$PATH
first (like it's currently done), then if that fails, try whitespace splitting.The text was updated successfully, but these errors were encountered: