runtime: scan register backing store on ia64
[official-gcc.git] / libgo / go / runtime / numcpu_freebsd_test.go
blobe78890a6a4b9a7fcc07d3442cb1ad035e788baa2
1 // Copyright 2017 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 package runtime_test
7 import "testing"
9 func TestFreeBSDNumCPU(t *testing.T) {
10 got := runTestProg(t, "testprog", "FreeBSDNumCPU")
11 want := "OK\n"
12 if got != want {
13 t.Fatalf("expected %q, but got:\n%s", want, got)