]> Cypherpunks.ru repositories - gostls13.git/blob - src/runtime/numcpu_freebsd_test.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / src / runtime / numcpu_freebsd_test.go
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.
4
5 package runtime_test
6
7 import "testing"
8
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)
14         }
15 }