diff options
author | P. J. McDermott <pjm@nac.net> | 2013-05-27 06:01:31 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-05-27 06:01:31 (EDT) |
commit | b1e208d0a180a4f8d7a721511f2ad343164bce5f (patch) | |
tree | 590c91da8e811fdd2f99b792c1f4ec486fffefb3 /tests/t_installfiles_dir_slash | |
parent | cf28ddd05f2c9a97e1836b551276e4a74f06b1d5 (diff) |
Add unit tests for oh-installfiles.
Diffstat (limited to 'tests/t_installfiles_dir_slash')
-rw-r--r-- | tests/t_installfiles_dir_slash | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/t_installfiles_dir_slash b/tests/t_installfiles_dir_slash new file mode 100644 index 0000000..be4ae42 --- /dev/null +++ b/tests/t_installfiles_dir_slash @@ -0,0 +1,17 @@ +#!/bin/sh + +mkdir foo.pkg +cat >foo.pkg/files <<-EOF + /usr/bin/ + EOF + +mkdir -p tmp/dest/usr/bin +>tmp/dest/usr/bin/foo + +cd tmp +OPK_PACKAGES='foo' oh-installfiles +assert test_non_dir_nodes dest +assert test_nodes foo.data / /usr/ /usr/bin/ /usr/bin/foo +cd .. + +rm -Rf foo.pkg tmp |