1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#!/bin/sh
set -eu
# list bugs of package 'apt'
apt-listbugs list apt
# list bugs of package 'apt' with debug
apt-listbugs -C ./debian/tests/debugfile_apt.conf \
-d list apt 2> $AUTOPKGTEST_ARTIFACTS/apt-listbugs_debug.err
mv -f /tmp/apt-listbugs_debug.log $AUTOPKGTEST_ARTIFACTS/
# simulate an upgrade of one package
/usr/share/doc/apt-listbugs/examples/send-hook-info.rb \
./debian/tests/v3-hookinfo_upgrade.txt 'apt-listbugs -y -N apt'
# list bugs (of all severities) filed against apt-listbugs itself
/usr/share/doc/apt-listbugs/examples/deblistbugs
|