diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-12-31 22:11:34 +0100 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-12-31 22:52:46 +0100 |
commit | 4ac02fbe711fc3ec9ac2a29767af02ae852b2703 (patch) | |
tree | ff627be18f3ed1be7a2cb38faa9b16241c6f90c9 | |
parent | 73f3bfd086b404f50cf7de634411b56b1ce8bb69 (diff) | |
download | sbotools2-4ac02fbe711fc3ec9ac2a29767af02ae852b2703.tar.xz |
Fix test for multilib convertpkg fail
-rwxr-xr-x | t/fail.t | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -163,10 +163,11 @@ SKIP: { # 16: Multilib fails - convertpkg fail SKIP: { skip "Multilib convertpkg fail test only valid if TEST_MULTILIB=2", 1 unless $ENV{TEST_MULTILIB} == 2; + skip "This test is designed to be run in the Travis CI environment", 1 unless $ENV{TRAVIS}; skip "No /etc/profile.d/32dev.sh", 1 unless -e "/etc/profile.d/32dev.sh"; skip "No /usr/sbin/convertpkg-compat32", 1 unless -e "/usr/sbin/convertpkg-compat32"; - script (qw/ sboinstall -p multilibfail /, { input => "y\ny\ny", expected => qr//, exit => 9 }); + script (qw/ sboinstall -p multilibfail /, { input => "y\ny\ny", expected => qr/Failures:\n multilibfail-compat32: convertpkg-compt32 returned non-zero exit status\n/, exit => 10 }); } # Cleanup |