diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-05-10 22:59:37 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-05-11 02:00:46 -0400 |
commit | 79e4605a163199344df44b8947a15bac9ece75d0 (patch) | |
tree | 0a424b631037ce2a331e6f9d00ef70cf331c9e97 | |
parent | b810795b6689ab9e1635af21a48660305b2a7820 (diff) |
Add a rough test of file order from librefetch's tarballs.
-rw-r--r-- | test/librefetch-test.sh | 1 | ||||
-rw-r--r-- | test/librefetch.d/PKGBUILD | 5 | ||||
-rw-r--r-- | test/librefetch.d/list.txt | 5 |
3 files changed, 9 insertions, 2 deletions
diff --git a/test/librefetch-test.sh b/test/librefetch-test.sh index 43b7a69..675299a 100644 --- a/test/librefetch-test.sh +++ b/test/librefetch-test.sh @@ -31,6 +31,7 @@ it_displays_help() { empty $tmpdir/stderr } +# This test also does a rough test of file order in the PKGBUILD it_cleans_src_libre_first() { cp librefetch.d/* "$tmpdir/" cd "$tmpdir" diff --git a/test/librefetch.d/PKGBUILD b/test/librefetch.d/PKGBUILD index 723d82e..db80db3 100644 --- a/test/librefetch.d/PKGBUILD +++ b/test/librefetch.d/PKGBUILD @@ -7,7 +7,10 @@ source=("libre://$pkgname-$pkgver.tar.gz") mksource() { mkdir "$srcdir/bar" - touch "$srcdir/bar/file" + local file + for file in '~foo' '~a' a A; do + touch "$srcdir/bar/$file" + done } package() { diff --git a/test/librefetch.d/list.txt b/test/librefetch.d/list.txt index b04d5d1..9bd32f4 100644 --- a/test/librefetch.d/list.txt +++ b/test/librefetch.d/list.txt @@ -1,2 +1,5 @@ bar/ -bar/file +bar/A +bar/a +bar/~a +bar/~foo |