1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 16:49:42 +00:00

tests refactoring

This commit is contained in:
deadc0de6
2019-03-10 21:23:23 +01:00
parent cbca270a36
commit 8519578db4
2 changed files with 7 additions and 7 deletions

View File

@@ -114,10 +114,10 @@ cd ${ddpath} | ${bin} install -f -c ${cfg} -p p1 -V
[ ! -e ${tmpd}/def ] && exit 1
[ ! -e ${tmpd}/xyz ] && exit 1
[ ! -e ${tmpd}/dyn ] && exit 1
grep 'abc' ${tmpd}/abc
grep 'def' ${tmpd}/def
grep 'xyz' ${tmpd}/xyz
grep 'dyn' ${tmpd}/dyn
grep 'abc' ${tmpd}/abc >/dev/null 2>&1
grep 'def' ${tmpd}/def >/dev/null 2>&1
grep 'xyz' ${tmpd}/xyz >/dev/null 2>&1
grep 'dyn' ${tmpd}/dyn >/dev/null 2>&1
## CLEANING
rm -rf ${tmps} ${tmpd}