runtime: scan register backing store on ia64
[official-gcc.git] / libgo / go / runtime / proc_runtime_test.go
bloba7bde2c6df7c3ea6480303a05a54a4ffa50b24b1
1 // Copyright 2016 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // Proc unit tests. In runtime package so can use runtime guts.
7 package runtime
9 func RunStealOrderTest() {
10 var ord randomOrder
11 for procs := 1; procs <= 64; procs++ {
12 ord.reset(uint32(procs))
13 if procs >= 3 && len(ord.coprimes) < 2 {
14 panic("too few coprimes")
16 for co := 0; co < len(ord.coprimes); co++ {
17 enum := ord.start(uint32(co))
18 checked := make([]bool, procs)
19 for p := 0; p < procs; p++ {
20 x := enum.position()
21 if checked[x] {
22 println("procs:", procs, "inc:", enum.inc)
23 panic("duplicate during enumeration")
25 checked[x] = true
26 enum.next()
28 if !enum.done() {
29 panic("not done")