diff options
-rwxr-xr-x | tests/ifconfig.test | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/ifconfig.test b/tests/ifconfig.test index 34b84b73..d71f3576 100755 --- a/tests/ifconfig.test +++ b/tests/ifconfig.test @@ -123,16 +123,18 @@ testing "dummy0 arp down" \ # Test Description: Call the pointopoint option with no argument # Results Expected: After calling ifconfig dummy0, there is one line with the # NOARP and UP flags -testing "dummy0 pointopoint" \ -"ifconfig dummy0 pointopoint && ifconfig dummy0 | grep -i NOARP | grep -i UP | wc -l" \ -"1\n" "" "" +# TODO: http://lists.landley.net/pipermail/toybox-landley.net/2014-November/003795.html +#testing "dummy0 pointopoint" \ +#"ifconfig dummy0 pointopoint && ifconfig dummy0 | grep -i NOARP | grep -i UP | wc -l" \ +#"1\n" "" "" # Test Description: Test the pointopoint option and set the ipaddress # Results Expected: After calling ifconfig dummy0, there is one line with the # word inet and the selected ip address -testing "dummy0 pointopoint 127.0.0.2" \ -"ifconfig dummy0 pointopoint 127.0.0.2 && ifconfig dummy0 | grep -i inet | grep -i 127\.0\.0\.2 | wc -l" \ -"1\n" "" "" +# TODO: http://lists.landley.net/pipermail/toybox-landley.net/2014-November/003795.html +#testing "dummy0 pointopoint 127.0.0.2" \ +#"ifconfig dummy0 pointopoint 127.0.0.2 && ifconfig dummy0 | grep -i inet | grep -i 127\.0\.0\.2 | wc -l" \ +#"1\n" "" "" ####### Flags you can set on an interface (or -remove by prefixing with -): ############### |