mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-11 22:43:40 +00:00
Add process.Release for unix
Signed-off-by: leongross <leon.gross@9elements.com>
This commit is contained in:
+12
-15
@@ -12,21 +12,18 @@ import (
|
||||
|
||||
func TestFindProcess(t *testing.T) {
|
||||
// NOTE: For now, we only test the Linux case since only exec_posix.go is currently the only implementation.
|
||||
if runtime.GOOS == "linux" {
|
||||
// Linux guarantees that there is pid 0
|
||||
proc, err := FindProcess(0)
|
||||
if err != nil {
|
||||
t.Error("FindProcess(0): wanted err == nil, got %v:", err)
|
||||
}
|
||||
|
||||
if proc.Pid != 0 {
|
||||
t.Error("Expected pid 0, got: ", proc.Pid)
|
||||
}
|
||||
|
||||
pid0 := Process{Pid: 0}
|
||||
if *proc != pid0 {
|
||||
t.Error("Expected &Process{Pid: 0}, got", *proc)
|
||||
}
|
||||
// Linux guarantees that there is pid 0
|
||||
proc, err := FindProcess(0)
|
||||
if err != nil {
|
||||
t.Error("FindProcess(0): wanted err == nil, got %v:", err)
|
||||
}
|
||||
|
||||
if proc.Pid != 0 {
|
||||
t.Error("Expected pid 0, got: ", proc.Pid)
|
||||
}
|
||||
|
||||
pid0 := Process{Pid: 0}
|
||||
if *proc != pid0 {
|
||||
t.Error("Expected &Process{Pid: 0}, got", *proc)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user