blob: d003e8cb1bd5c23d74967e21b1d3c2e6e2d5db0c [file] [log] [blame]
// Copyright 2023 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package os_test
import (
"os"
"testing"
)
func TestCheckPidfd(t *testing.T) {
// This doesn't test anything, but merely allows to check that pidfd
// is working (and thus being tested) in CI on some platforms.
if err := os.CheckPidfdOnce(); err != nil {
t.Log("checkPidfd:", err)
} else {
t.Log("pidfd syscalls work")
}
}