This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients Arfrever, bkabrda, python-dev, serhiy.storchaka, tim.peters
Date 2014-01-10.12:59:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389358769.4.0.0911073965876.issue19804@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2014-01-10 12:59:29serhiy.storchakasetrecipients: + serhiy.storchaka, tim.peters, Arfrever, python-dev, bkabrda
2014-01-10 12:59:29serhiy.storchakasetmessageid: <1389358769.4.0.0911073965876.issue19804@psf.upfronthosting.co.za>
2014-01-10 12:59:29serhiy.storchakalinkissue19804 messages
2014-01-10 12:59:28serhiy.storchakacreate