good morning!!!!

Skip to content
Snippets Groups Projects
Commit 8b48275e authored by Garet Halliday's avatar Garet Halliday
Browse files

ah

parent ff1aa03d
No related branches found
No related tags found
No related merge requests found
package schedulers
import (
"runtime"
"sync"
"testing"
"time"
......@@ -93,6 +94,18 @@ func similar(v0, v1 int, vn ...int) bool {
return true
}
// like debug.Stack but gets all stacks
func allStacks() []byte {
buf := make([]byte, 1024)
for {
n := runtime.Stack(buf, true)
if n < len(buf) {
return buf[:n]
}
buf = make([]byte, 2*len(buf))
}
}
func TestScheduler(t *testing.T) {
var table ShareTable
sched := NewScheduler()
......@@ -210,6 +223,7 @@ func TestScheduler_StealBalanced(t *testing.T) {
if t0 == 0 {
t.Error("expected executions on all sources (is there a race in the balancer??)")
t.Errorf("%s", allStacks())
}
}
......@@ -243,5 +257,6 @@ func TestScheduler_StealUnbalanced(t *testing.T) {
if t0 == 0 {
t.Error("expected executions on all sources (is there a race in the balancer??)")
t.Errorf("%s", allStacks())
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment