tests, do not send pkgname with arch via the status-fd
[ntk/apt.git] / test / integration / test-apt-progress-fd-error
CommitLineData
42c1513b
MV
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6
7setupenvironment
8configarchitecture 'amd64' 'i386'
9
10mkdir -p usr/bin
11touch usr/bin/file-conflict
12
13buildsimplenativepackage 'foo1' 'amd64,i386' '0.8.15' 'stable' '' 'pkg with file conflicts' '' '' 'usr/'
14buildsimplenativepackage 'foo2' 'amd64,i386' '0.8.15' 'stable' '' 'pkg with file conflicts' '' '' 'usr/'
15
16setupaptarchive
17
18exec 3> apt-progress.log
19testfailure aptget install foo1 foo2 -y -o APT::Status-Fd=3
20msgtest "Ensure correct error message"
21grep -q "aptarchive/pool/foo2_0.8.15_amd64.deb :40:trying to overwrite '/usr/bin/file-conflict', which is also in package foo1 0.8.15" apt-progress.log && msgpass || msgfail
22