ipc-system-simple icon indicating copy to clipboard operation
ipc-system-simple copied to clipboard

Perl module to make running system commands and capturing errors as simple as possible.

Results 20 ipc-system-simple issues
Sort by recently updated
recently updated
newest added

On 5.39.2 built with ` config_args='-de -Dprefix=/home/s.aleinikov/perlbrew/perls/perl-blead-asan -Dman1dir=none -Dman3dir=none -DDEBUGGING -Dusedevel -Accflags=-fsanitize=address -fsanitize=undefined -ggdb3 -Aldflags=-Wl,--no-as-needed -lasan -lubsan -Aeval:scriptdir=/home/s.aleinikov/perlbrew/perls/perl-blead-asan/bin'` I get the following test failure: ``` t/08_core.t ........... 1/3 # Failed...

there doesn't seem to be a way to prevent this without having to engage in further shenanigans with the exit value

If perl is built without taint support (ie using `-Accflags=-DSILENT_NO_TAINT_SUPPORT` or `-Accflags=-DNO_TAINT_SUPPORT`) the existing tests fail. This patch makes the taint tests skip if taint-mode isn't supported.

From Perl 5.35.11 onwards, Configure lets you build a perl without taint support. These changes skip tests that rely on taint support, so that this distribution can be installed under...

Tests 1 and 2 below fail, but 3 and 4 work. The third one isn't great, because it makes me responsible for properly quoting the entire command. The fourth one...

windows
Closable?

In the course of working on https://github.com/pjf/ipc-system-simple/pull/39, I had occasion to install CPAN module [BSD::Resource](https://metacpan.org/pod/BSD::Resource) on the machines on which I had previously worked on IPC-System-Simple. Once I did so,...

Cannot install lastest IPC::System::Simple version for what seems to be a variety of issues: ``` cpanm (App::cpanminus) 1.7044 on perl 5.030002 built for MSWin32-x64-multi-thread Work directory is C:\Users\TOMBLO~1/.cpanm/work/1591174710.30836 You have...

this PR fixes various test issues found in #37 The biggest two are: when running a perl under [Portable](https://metacpan.org/pod/Portable) `$Config{perlpath}` is tainted due to having to compute that path at...

As originally reported in /theory/sqitch#331. Note that the OP, @NorthLarry, found that passing a path with a space to `psql` failed, but not when passing it to `notepad`. Both work...

windows
Closable?

Hi. I'm finding `IPC::System::Simple`'s `system` isn't a drop-in replacement for the built-in `system` in some circumstances involving spaces in a filename being supplied to a command. For instance, this works,...

bug
windows
Closable?