summaryrefslogtreecommitdiff
path: root/tests/allocate-failed.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/allocate-failed.php')
-rw-r--r--tests/allocate-failed.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/allocate-failed.php b/tests/allocate-failed.php
deleted file mode 100644
index 8514ecc0..00000000
--- a/tests/allocate-failed.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-use Spiral\Goridge\StreamRelay;
-use Spiral\RoadRunner\Worker as RoadRunner;
-
-require __DIR__ . "/vendor/autoload.php";
-
-if (file_exists('break')) {
- throw new Exception('oops');
-}
-
-$rr = new RoadRunner(new StreamRelay(\STDIN, \STDOUT));
-
-while($rr->waitPayload()){
- $rr->respond(new \Spiral\RoadRunner\Payload(""));
-}