]> git.saurik.com Git - apt.git/blob - test/integration/test-ubuntu-bug-365611-long-package-names
Merge branch 'debian/sid' into bugfix/update-progress-reporting
[apt.git] / test / integration / test-ubuntu-bug-365611-long-package-names
1 #!/bin/sh
2 set -e
3
4 TESTDIR=$(readlink -f $(dirname $0))
5 . $TESTDIR/framework
6 setupenvironment
7 configarchitecture 'i386'
8 setupaptarchive
9
10 aptget install $(for i in $(seq 0 1000); do echo -n 'a'; done) 2> longpackagename.log > /dev/null || true
11 testfileequal 'longpackagename.log' "E: Unable to locate package $(for i in $(seq 0 1000); do echo -n 'a'; done)"
12
13 # … and the opposite of long:
14 aptget install "" -s >longpackagename.log 2>&1 || true
15 testfileequal 'longpackagename.log' "$(aptget install -s)"