File tree 3 files changed +27
-0
lines changed
src/Symfony/Component/Process/Tests
3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -211,6 +211,11 @@ public function testExitCodeIsAvailableAfterSignal()
211
211
$ this ->markTestSkipped ('Signal is not supported in sigchild environment ' );
212
212
}
213
213
214
+ public function testRunProcessWithTimeout ()
215
+ {
216
+ $ this ->markTestSkipped ('Signal (required for timeout) is not supported in sigchild environment ' );
217
+ }
218
+
214
219
/**
215
220
* {@inheritdoc}
216
221
*/
Original file line number Diff line number Diff line change @@ -120,6 +120,21 @@ public function testStartAfterATimeout()
120
120
parent ::testStartAfterATimeout ();
121
121
}
122
122
123
+ public function testStopWithTimeoutIsActuallyWorking ()
124
+ {
125
+ $ this ->markTestSkipped ('Stopping with signal is not supported in sigchild environment ' );
126
+ }
127
+
128
+ public function testRunProcessWithTimeout ()
129
+ {
130
+ $ this ->markTestSkipped ('Signal (required for timeout) is not supported in sigchild environment ' );
131
+ }
132
+
133
+ public function testCheckTimeoutOnStartedProcess ()
134
+ {
135
+ $ this ->markTestSkipped ('Signal (required for timeout) is not supported in sigchild environment ' );
136
+ }
137
+
123
138
/**
124
139
* {@inheritdoc}
125
140
*/
Original file line number Diff line number Diff line change @@ -191,6 +191,13 @@ public function testTermSignalTerminatesProcessCleanly()
191
191
}
192
192
}
193
193
194
+ public function testStopWithTimeoutIsActuallyWorking ()
195
+ {
196
+ $ this ->skipIfPHPSigchild ();
197
+
198
+ parent ::testStopWithTimeoutIsActuallyWorking ();
199
+ }
200
+
194
201
/**
195
202
* {@inheritdoc}
196
203
*/
You can’t perform that action at this time.
0 commit comments