diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2021-02-19 13:54:49 +0200 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2021-02-19 13:54:49 +0200 |
commit | 0ccaa814bda420a39f4a184d655fa5cb670bf964 (patch) | |
tree | 7cca9fca6790723be2df70baeda1e580cd7b82dd /test.sh | |
parent | f06d27a55b74ce0b65671bc5cbd9a65666de04d6 (diff) | |
download | conf-0ccaa814bda420a39f4a184d655fa5cb670bf964.tar.gz conf-0ccaa814bda420a39f4a184d655fa5cb670bf964.tar.bz2 conf-0ccaa814bda420a39f4a184d655fa5cb670bf964.zip |
Fix test
Diffstat (limited to 'test.sh')
-rwxr-xr-x | test.sh | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -1,8 +1,9 @@ #!/bin/bash -CONF=$(realpath conf) -CONF_HOME=$(mktemp -d) -export CONF_HOME +set -e + +CONF=$(realpath ./conf) +export CONF_HOME=$(mktemp -d) conf1=$(mktemp) conf2=$(mktemp) @@ -16,9 +17,13 @@ echo "test config 3" > "$conf3" echo "test config 4" > "$conf4" echo "test config 5" > "$conf5" +$CONF add -t "$conf1" $CONF add "$conf1" +$CONF add -t -g conf "$conf2" "$conf3" $CONF add -g conf "$conf2" "$conf3" +$CONF add -t -g conf "$conf4" $CONF add -g conf "$conf4" +$CONF add -t -g other "$conf5" $CONF add -g other "$conf5" [ "$($CONF ls -l | wc -l)" != "5" ] && echo Test failed |