mirror of
https://github.com/caddyserver/caddy.git
synced 2025-01-13 22:51:08 -05:00
13 lines
196 B
Go
13 lines
196 B
Go
package main
|
|
|
|
import (
|
|
"runtime"
|
|
"testing"
|
|
)
|
|
|
|
func TestNumProcs(t *testing.T) {
|
|
n := numProcs()
|
|
if n != runtime.NumCPU()-1 {
|
|
t.Errorf("Expected numProcs to return NumCPU-1, got %d", n)
|
|
}
|
|
}
|