aboutsummaryrefslogtreecommitdiff
path: root/src/net/interface_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/interface_test.go')
-rw-r--r--src/net/interface_test.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/interface_test.go b/src/net/interface_test.go
index da54a660e5..5590b06262 100644
--- a/src/net/interface_test.go
+++ b/src/net/interface_test.go
@@ -300,6 +300,7 @@ func checkMulticastStats(ifStats *ifStats, uniStats, multiStats *routeStats) err
}
func BenchmarkInterfaces(b *testing.B) {
+ b.ReportAllocs()
testHookUninstaller.Do(uninstallTestHooks)
for i := 0; i < b.N; i++ {
@@ -310,6 +311,7 @@ func BenchmarkInterfaces(b *testing.B) {
}
func BenchmarkInterfaceByIndex(b *testing.B) {
+ b.ReportAllocs()
testHookUninstaller.Do(uninstallTestHooks)
ifi := loopbackInterface()
@@ -324,6 +326,7 @@ func BenchmarkInterfaceByIndex(b *testing.B) {
}
func BenchmarkInterfaceByName(b *testing.B) {
+ b.ReportAllocs()
testHookUninstaller.Do(uninstallTestHooks)
ifi := loopbackInterface()
@@ -338,6 +341,7 @@ func BenchmarkInterfaceByName(b *testing.B) {
}
func BenchmarkInterfaceAddrs(b *testing.B) {
+ b.ReportAllocs()
testHookUninstaller.Do(uninstallTestHooks)
for i := 0; i < b.N; i++ {
@@ -348,6 +352,7 @@ func BenchmarkInterfaceAddrs(b *testing.B) {
}
func BenchmarkInterfacesAndAddrs(b *testing.B) {
+ b.ReportAllocs()
testHookUninstaller.Do(uninstallTestHooks)
ifi := loopbackInterface()
@@ -362,6 +367,7 @@ func BenchmarkInterfacesAndAddrs(b *testing.B) {
}
func BenchmarkInterfacesAndMulticastAddrs(b *testing.B) {
+ b.ReportAllocs()
testHookUninstaller.Do(uninstallTestHooks)
ifi := loopbackInterface()