-
Notifications
You must be signed in to change notification settings - Fork 10
Cannot run tests on Windows using Git Bash #83
Comments
Hello @lukbukkit, Please, can you test #84 and tell me if it fixes your issue? Thanks! |
The patch in atoum/atoum#688 will only fix the “atoum path” line in the report. The path is incorrectly displayed, but it is correctly used. |
I've applied #84 and atoum/atoum#688, but it doesn't seem to help. |
What is the output please? |
Again a single line of output:
I will try it also on another windows machine. |
Can you |
Sure
|
@lukbukkit What happens when you execute this command manually, directly on the command-line? |
Okay when I try to run the command using the Windows command-line it works. If I change the paths a litte bit the command looks like this
and works in the Git Bash too.
Again thanks you for your help to this point. Now I've got a workaround. 😃 |
But it seems we have an issue on Windows with Can you test those two examples and tell me which one works or not. Example 1: $processus = new Hoa\Console\Processus('ls');
$processus->open();
echo $processus->readAll(); Example 2: $processus = new Hoa\Console\Processus('ls');
$processus->on('output', function (Hoa\Event\Bucket $bucket) {
$data = $bucket->getData();
echo '> ', $data['line'], "\n";
});
$processus->run(); Thanks! |
Test Nr.1:
Test Nr.2:
|
@lukbukkit This is an issue related to |
Hello,
I wanted to run the tests for the Socket Libary on Windows, but when I execute the command, I get only a single line of output:
After this, the programms just waits for termination. I tested it on Ubuntu too and there it works.
My PHP version by the way:
Thank you for your help!
The text was updated successfully, but these errors were encountered: