]>
git.saurik.com Git - apt.git/blob - test/integration/test-bug-618288-multiarch-same-lockstep
4 TESTDIR
=$(readlink -f $(dirname $0))
7 configarchitecture
'amd64' 'i386'
9 insertinstalledpackage
'libsame' 'i386,amd64' '1' 'Multi-Arch: same' 'required'
10 insertinstalledpackage
'apt' 'i386' '1' 'Depends: libsame (= 1)
11 Essential: yes' 'required'
12 insertinstalledpackage
'apt2' 'amd64' '1' 'Depends: libsame (= 1)
13 Essential: yes' 'required'
14 buildsimplenativepackage
'libsame' 'i386,amd64' '2' 'unstable' 'Multi-Arch: same' '' 'required'
15 buildsimplenativepackage
'apt' 'i386' '2' 'unstable' 'Depends: libsame (= 2)' '' 'required'
16 buildsimplenativepackage
'apt2' 'amd64' '2' 'unstable' 'Depends: libsame (= 2)' '' 'required'
19 aptget dist
-upgrade -s >output.apt
2>&1
21 # order in switch libsame:{amd64,i386} are unpacked is irrelevant, as both are installed - but we need to do it together
22 LS_U_AMD
="$(grep -o -n '^Inst libsame ' output.apt | cut -d: -f1)"
23 LS_U_INT
="$(grep -o -n '^Inst libsame:i386 ' output.apt | cut -d: -f1)"
24 LS_C_AMD
="$(grep -o -n '^Conf libsame ' output.apt | cut -d: -f1)"
25 LS_C_INT
="$(grep -o -n '^Conf libsame:i386 ' output.apt | cut -d: -f1)"
27 msgtest
'Test if libsame:amd64 unpack before configure'
28 test "$LS_U_AMD" -lt "$LS_C_AMD" && msgpass
|| msgfail
30 msgtest
'Test if libsame:i386 unpack before configure'
31 test "$LS_U_INT" -lt "$LS_C_INT" && msgpass
|| msgfail
33 msgtest
'Test if libsame:amd64 unpack is before libsame:i386 configure'
34 test "$LS_U_AMD" -lt "$LS_C_INT" && msgpass
|| msgfail
36 msgtest
'Test if libsame:i386 unpack is before libsame:amd64 configure'
37 test "$LS_U_INT" -lt "$LS_C_AMD" && msgpass
|| msgfail