mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-17 12:00:56 +01:00
next try, typo
This commit is contained in:
@@ -10,7 +10,7 @@ before_install:
|
||||
- sudo make install
|
||||
- cd ..
|
||||
- ./autogen.sh
|
||||
- git clone https://github.com/tlinden/p5mode tests/lib
|
||||
- git clone https://github.com/tlinden/p5mods tests/lib
|
||||
compiler:
|
||||
- clang
|
||||
- gcc
|
||||
|
||||
@@ -23,12 +23,12 @@ use lib qw(lib);
|
||||
|
||||
BEGIN {
|
||||
eval {
|
||||
require IPC::Run;
|
||||
};
|
||||
require IPC::Run; # on win32
|
||||
};
|
||||
}
|
||||
|
||||
use IPC::Open3; # unix et al use this
|
||||
use Test::More;
|
||||
use IPC::Open3;
|
||||
use IO::Select;
|
||||
use FileHandle;
|
||||
use Config::General qw(ParseConfig);
|
||||
@@ -220,6 +220,7 @@ sub run3 {
|
||||
else {
|
||||
@c = split /\s\s*/, $cmd;
|
||||
}
|
||||
|
||||
my $ret = IPC::Run::run( \@c, \$input, \$o, \$e, IPC::Run::timeout( $timeout ));
|
||||
$$output = $o;
|
||||
$$error = $e;
|
||||
|
||||
Reference in New Issue
Block a user