]>
git.saurik.com Git - apt.git/blob - test/integration/test-apt-progress-fd-conffile
4 TESTDIR
=$(readlink -f $(dirname $0))
8 configarchitecture
'native'
11 setupsimplenativepackage
'compiz-core' 'native' '1.0' 'unstable'
12 BUILDDIR
='incoming/compiz-core-1.0'
13 mkdir -p ${BUILDDIR}/debian
/compiz
-core/etc
14 echo 'foo=bar;' > ${BUILDDIR}/compiz.conf
15 echo 'compiz.conf /etc/compiz.conf' >> ${BUILDDIR}/debian
/install
16 buildpackage
"$BUILDDIR" 'unstable' 'main' 'native'
20 setupsimplenativepackage
'compiz-core' 'native' '2.0' 'unstable'
21 BUILDDIR
='incoming/compiz-core-2.0'
22 mkdir -p ${BUILDDIR}/debian
/compiz
-core/etc
23 echo 'foo2=bar2;' > ${BUILDDIR}/compiz.conf
24 echo 'compiz.conf /etc/compiz.conf' >> ${BUILDDIR}/debian
/install
25 buildpackage
"$BUILDDIR" 'unstable' 'main' 'native'
30 testsuccess aptget
install compiz
-core=1.0
32 # fake conffile change
33 echo "meep" >> rootdir
/etc
/compiz.conf
/compiz.conf
36 exec 3> apt
-progress.log
37 echo n
| aptget
install compiz
-core=2.0 -o APT
::Status
-Fd=3 -o Dpkg
::Use
-Pty=false
39 # and ensure there is a conffile message in the file
40 msgtest
"Conffile prompt in apt-progress.log"
41 grep -q "pmconffile:/etc/compiz.conf/compiz.conf" apt
-progress.log
&& msgpass
|| (cat apt
-progress.log
&& msgfail
)