diff options
Diffstat (limited to 'src/runtime/stack_test.go')
-rw-r--r-- | src/runtime/stack_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/stack_test.go b/src/runtime/stack_test.go index 48058b95cb..fa073f19ad 100644 --- a/src/runtime/stack_test.go +++ b/src/runtime/stack_test.go @@ -60,7 +60,7 @@ func TestStackMem(t *testing.T) { if consumed > estimate { t.Fatalf("Stack mem: want %v, got %v", estimate, consumed) } - // Due to broken stack memory accounting (http://golang.org/issue/7468), + // Due to broken stack memory accounting (https://golang.org/issue/7468), // StackInuse can decrease during function execution, so we cast the values to int64. inuse := int64(s1.StackInuse) - int64(s0.StackInuse) t.Logf("Inuse %vMB for stack mem", inuse>>20) |