Serhiy Storchaka added the comment:

Thank you Bohuslav. Unfortunately I don't see good replacement for ifconfig, 
any of these executables can be absent (e.g. chroot can be built in BusyBox). 
So I'll left ifconfig and adds checks for its accessibility.

You can workaround this issue by adding an executable with name ifconfig to 
your PATH. For example:

bin_for_test_uuid="$HOME/bin_for_test_uuid"
mkdir "$bin_for_test_uuid"
ln -s /bin/true "$bin_for_test_uuid/ifconfig"
export PATH="$PATH:$bin_for_test_uuid"
./python -m test.regrtest test_uuid

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19804>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to