]>
Commit | Line | Data |
---|---|---|
42c1513b MV |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
4 | TESTDIR=$(readlink -f $(dirname $0)) | |
5 | . $TESTDIR/framework | |
6 | ||
7 | setupenvironment | |
8 | configarchitecture 'amd64' 'i386' | |
9 | ||
10 | mkdir -p usr/bin | |
11 | touch usr/bin/file-conflict | |
12 | ||
13 | buildsimplenativepackage 'foo1' 'amd64,i386' '0.8.15' 'stable' '' 'pkg with file conflicts' '' '' 'usr/' | |
14 | buildsimplenativepackage 'foo2' 'amd64,i386' '0.8.15' 'stable' '' 'pkg with file conflicts' '' '' 'usr/' | |
15 | ||
16 | setupaptarchive | |
17 | ||
18 | exec 3> apt-progress.log | |
19 | testfailure aptget install foo1 foo2 -y -o APT::Status-Fd=3 | |
20 | msgtest "Ensure correct error message" | |
a2a75ff4 | 21 | if grep -q "aptarchive/pool/foo2_0.8.15_amd64.deb:36.3636:trying to overwrite '/usr/bin/file-conflict', which is also in package foo1 0.8.15" apt-progress.log; then |
f920cbe8 DK |
22 | msgpass |
23 | else | |
24 | cat apt-progress.log | |
25 | msgfail | |
26 | fi | |
42c1513b | 27 |