diff options
author | Julian Andres Klode <jak@debian.org> | 2015-08-19 09:50:19 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2015-08-19 09:55:21 +0200 |
commit | defe3231c7bafc4d789219a3250be9ccfbc51914 (patch) | |
tree | efdef6d37689b45ce3e6859a309ba42ec98fbd21 /test/integration | |
parent | a8275acf87cf15992e6b89694d6276e0a5e529b9 (diff) |
Support tabs in sources.list files
Also support vertical tabs, as isspace() does the same.
Closes: #796067
Diffstat (limited to 'test/integration')
-rwxr-xr-x | test/integration/test-apt-sources-deb822 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/integration/test-apt-sources-deb822 b/test/integration/test-apt-sources-deb822 index adfe0e003..259763096 100755 --- a/test/integration/test-apt-sources-deb822 +++ b/test/integration/test-apt-sources-deb822 @@ -31,6 +31,12 @@ testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.deb 'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 " aptget update --print-uris +msgcleantest 'Test sources.list' 'old style with tabs' +echo "deb http://ftp.debian.org/debian stable main" > $LISTS +testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 +'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 +'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 " aptget update --print-uris + msgcleantest 'Test sources.list' 'old style with options' echo "deb [trusted=yes arch+=armel,powerpc] http://ftp.debian.org/debian stable main" > $LISTS testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 |