提交 3ce89ce0 编写于 作者: S Shirou WAKAYAMA

process: fix linux testing.

上级 e39f17af
...@@ -121,7 +121,7 @@ func Test_Process_Status(t *testing.T) { ...@@ -121,7 +121,7 @@ func Test_Process_Status(t *testing.T) {
if err != nil { if err != nil {
t.Errorf("geting ppid error %v", err) t.Errorf("geting ppid error %v", err)
} }
if v != "S+" { if !strings.HasPrefix(v, "S") && v != "running"{
t.Errorf("could not get state %v", v) t.Errorf("could not get state %v", v)
} }
} }
...@@ -133,8 +133,8 @@ func Test_Process_Terminal(t *testing.T) { ...@@ -133,8 +133,8 @@ func Test_Process_Terminal(t *testing.T) {
if err != nil { if err != nil {
t.Errorf("geting terminal error %v", err) t.Errorf("geting terminal error %v", err)
} }
if v != "S+" { if v == "" {
t.Errorf("could not get state %v", v) t.Errorf("could not get terminal %v", v)
} }
} }
...@@ -169,7 +169,7 @@ func Test_Process_Nice(t *testing.T) { ...@@ -169,7 +169,7 @@ func Test_Process_Nice(t *testing.T) {
if err != nil { if err != nil {
t.Errorf("geting nice error %v", err) t.Errorf("geting nice error %v", err)
} }
if n != 0 { if n != 0 && n != 20{
t.Errorf("invalid nice: %d", n) t.Errorf("invalid nice: %d", n)
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册