git: ce6fffd96542 - stable/13 - dtrace tests: Fix tst.system.d after ping/ping6 unification
Mark Johnston
markj at FreeBSD.org
Fri Apr 30 13:21:06 UTC 2021
The branch stable/13 has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=ce6fffd96542099ff01cb9611170825753796edc
commit ce6fffd96542099ff01cb9611170825753796edc
Author: Mark Johnston <markj at FreeBSD.org>
AuthorDate: 2021-04-23 14:28:09 +0000
Commit: Mark Johnston <markj at FreeBSD.org>
CommitDate: 2021-04-30 13:21:00 +0000
dtrace tests: Fix tst.system.d after ping/ping6 unification
Sponsored by: The FreeBSD Foundation
(cherry picked from commit d500a85e640d1cd270747c12e17c511b53864436)
---
.../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);
}
More information about the dev-commits-src-branches
mailing list