Capture output of arch-test

This commit is contained in:
Johannes 'josch' Schauer 2018-09-18 13:10:28 +02:00
parent 77a95f0002
commit 1e472dc33d
Signed by untrusted user: josch
GPG key ID: F2CBA5C78FBD83E1

View file

@ -920,8 +920,10 @@ sub main() {
sparc => 'sparc', sparc => 'sparc',
sparc64 => 'sparc64', sparc64 => 'sparc64',
}; };
my $ret = system 'arch-test', '-n', $nativearch; open my $fh, '-|', 'arch-test', '-n', $nativearch // die "failed to fork(): $!";
if ($ret >> 8 != 0) { my $content = do { local $/; <$fh> };
close $fh;
if ($? != 0 or $content ne "$nativearch: ok") {
if (!exists $deb2qemu->{$nativearch}) { if (!exists $deb2qemu->{$nativearch}) {
die "no mapping from $nativearch to qemu-user binary"; die "no mapping from $nativearch to qemu-user binary";
} }