IPC-Run icon indicating copy to clipboard operation
IPC-Run copied to clipboard

Results 36 IPC-Run issues
Sort by recently updated
recently updated
newest added

Example pass w/ NetBSD 9.3: https://www.cpantesters.org/report/5dd40274-f12f-11ee-be45-8b0dec80b09a Example fail w/ NetBSD 10.0: https://www.cpantesters.org/report/efbcc1aa-f5f1-11ee-a642-ee3ed50263fb I've reproduced this via GitHub Actions (uses bsd workflow fixes that I need to polish for inclusion): https://github.com/nmisch/IPC-Run/actions/runs/8873497758/job/24359422461...

I have a situation where I want a generic function that finishes a harness and reports its result, but doesn't know if the caller started the harness yet. The module...

The problem could be reproduced on 2 different hosts: 1. Ubuntu 18.04.2 LTS * Kernel: 4.15.0-46-generic * Docker: 18.09.3 2. MacOS 10.14.6 * Docker Desktop: 2.2.0.5 (43884) * Docker Engine:...

I'm using IPC::Run::start and ``` $harness = IPC::Run::start(\@command_words, 'pipe', $stdout_handle, '2>pipe', $stderr_handle); ... $harness->finish(); my $exit_code = $harness->result(0); ``` Although the program I'm running seems to work properly, I get...

This serves as a demonstration for the problems in #143. As far as i understand IPC::Run and comments as https://github.com/toddr/IPC-Run/pull/143#issuecomment-851759322 , all of the calls below should work on windows,...

stalled

Fixes #162. This pull request currently contains 2 changes: - `croak` on empty (or undefined) strings in `_search_path` - `croak` on references to undefined arrays in `harness` Any of the...

stalled

Sometimes t/parent_and_child_fds_match.t fails like this: ``` # Failed test 'child process exited with success status' # at t/parent_and_child_fds_match.t line 63. # Looks like you failed 1 test of 3. t/parent_and_child_fds_match.t...

stalled

The minimal reproducible example I found is the following (in Powershell): ``` $Env:PATH="C:\Windows\system32\mspaint.exe" .\perl.exe -e "use IPC::Run qw(run); my @SomeUndefinedArray = undef; run \@SomeUndefinedArray;" ``` This will start mspaint.exe, but...

Migrated from https://rt.cpan.org/Ticket/Display.html?id=57393 (status was 'open') Tue May 11 18:06:47 2010 [email protected] - Ticket created Date: Wed, 12 May 2010 08:06:16 +1000 From: Kevin Ryde In a test script I...

Bug

Seems to indefinitely grow the input buffer by double at regular intervals, resulting in system memory starvation eventually. Example of problem:- ``` # echo ' PID USER PR NI VIRT...