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
5package runtime_test
6
7import "testing"
8
9func 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}
16