The branch main has been updated by markj:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=d500a85e640d1cd270747c12e17c511b53864436

commit d500a85e640d1cd270747c12e17c511b53864436
Author:     Mark Johnston <ma...@freebsd.org>
AuthorDate: 2021-04-23 14:28:09 +0000
Commit:     Mark Johnston <ma...@freebsd.org>
CommitDate: 2021-04-23 14:28:09 +0000

    dtrace tests: Fix tst.system.d after ping/ping6 unification
    
    MFC after:      1 week
    Sponsored by:   The FreeBSD Foundation
---
 .../opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d       | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d 
b/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d
index 63a850133b3f..4d5cced71c79 100644
--- a/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d
+++ b/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d
@@ -35,11 +35,11 @@ BEGIN
        this->b = -2;
 
        system("echo %s %d %d", "foo", this->a, this->b);
-       system("ping -q -c 1 localhost 2>/dev/null | grep -v '^round-trip '");
+       system("ping -q -c 1 127.0.0.1 2>/dev/null | grep -v '^round-trip '");
        system("echo %d", ++this->a);
-       system("ping -q -c 1 localhost 2>/dev/null | grep -v '^round-trip '");
+       system("ping -4 -q -c 1 127.0.0.1 2>/dev/null | grep -v '^round-trip 
'");
        system("echo %d", ++this->a);
-       system("ping -q -c 1 localhost 2>/dev/null | grep -v '^round-trip '");
+       system("ping -4 -q -c 1 127.0.0.1 2>/dev/null | grep -v '^round-trip 
'");
        system("echo %d", ++this->a);
        exit(0);
 }
_______________________________________________
dev-commits-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all
To unsubscribe, send any mail to "dev-commits-src-all-unsubscr...@freebsd.org"

Reply via email to