Module: tools Branch: master Commit: a41641e25580a1e68e82894d0c78b02eb97f7965 URL: http://source.winehq.org/git/tools.git/?a=commit;h=a41641e25580a1e68e82894d0...
Author: Francois Gouget fgouget@codeweavers.com Date: Fri Oct 20 16:17:48 2017 +0200
testbot: Remove StepsTasks::ChildPid. It is unused.
And with Task::ChildPid being deprecated it is not relevant anymore.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/lib/WineTestBot/StepsTasks.pm | 2 -- 1 file changed, 2 deletions(-)
diff --git a/testbot/lib/WineTestBot/StepsTasks.pm b/testbot/lib/WineTestBot/StepsTasks.pm index 8176c76..73be78c 100644 --- a/testbot/lib/WineTestBot/StepsTasks.pm +++ b/testbot/lib/WineTestBot/StepsTasks.pm @@ -109,7 +109,6 @@ BEGIN CreateBasicPropertyDescriptor("FileName", "File name", !1, 1, "A", 64), CreateBasicPropertyDescriptor("FileType", "File Type", !1, 1, "A", 64), CreateBasicPropertyDescriptor("CmdLineArg", "Command line args", !1, !1, "A", 256), - CreateBasicPropertyDescriptor("ChildPid", "Child process id", !1, !1, "N", 5), CreateBasicPropertyDescriptor("Started", "Execution started", !1, !1, "DT", 19), CreateBasicPropertyDescriptor("Ended", "Execution ended", !1, !1, "DT", 19), CreateBasicPropertyDescriptor("TestFailures", "Number of test failures", !1, !1, "N", 5), @@ -152,7 +151,6 @@ sub _initialize($$) } $StepTask->FileType($Step->FileType); $StepTask->CmdLineArg($Task->CmdLineArg); - $StepTask->ChildPid($Task->ChildPid); $StepTask->Started($Task->Started); $StepTask->Ended($Task->Ended); $StepTask->TestFailures($Task->TestFailures);