diff options
author | Valery Piashchynski <[email protected]> | 2021-04-18 23:51:27 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-04-18 23:51:27 +0300 |
commit | 4931146022a644a69e73f241e094966bdb5cb51f (patch) | |
tree | 19591af9a6a6d226640a680c2196143122324882 /tests/plugins/service/test_files/loop.php | |
parent | f5210c3f0739c03e9284c857d65dde3d97f3d84d (diff) |
- Add test binaries/exe for the Linux/Windows
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'tests/plugins/service/test_files/loop.php')
-rw-r--r-- | tests/plugins/service/test_files/loop.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/plugins/service/test_files/loop.php b/tests/plugins/service/test_files/loop.php new file mode 100644 index 00000000..6ba488ef --- /dev/null +++ b/tests/plugins/service/test_files/loop.php @@ -0,0 +1,6 @@ +<?php +for ($x = 0; $x <= 1000; $x++) { + sleep(1); + error_log("The number is: $x", 0); +} +?> |