]> git.ipfire.org Git - thirdparty/shadow.git/commitdiff
drop svn complications from test runner
authorSerge Hallyn <shallyn@cisco.com>
Fri, 24 Apr 2020 21:41:34 +0000 (16:41 -0500)
committerSerge Hallyn <serge@hallyn.com>
Sun, 7 Jun 2020 17:07:14 +0000 (12:07 -0500)
Signed-off-by: Serge Hallyn <shallyn@cisco.com>
tests/common/config.sh

index b92436c5b360a40f14dddfbb823312405a7efb5b..ea66ef3c6625616c402a6e23a276bd05febb4deb 100644 (file)
@@ -8,7 +8,7 @@ build_path=$(git rev-parse --show-toplevel)
 save_config ()
 {
        [ ! -d tmp ] && mkdir tmp
-       find config -depth -path "*/.svn/*" -prune -o -type f -print | sed -e 's/config\///' |
+       find config -depth -type f -print | sed -e 's/config\///' |
        while read file
        do
                mkdir -p "tmp/$(dirname "$file")"
@@ -19,7 +19,7 @@ save_config ()
 # Copy the config files from config to the system
 change_config ()
 {
-       find config -depth -path "*/.svn/*" -prune -o -type f -print | sed -e 's/config\///' |
+       find config -depth -type f -print | sed -e 's/config\///' |
        while read file
        do
                cp -f "config/$file" "/$file"
@@ -30,7 +30,7 @@ change_config ()
 # The config files must be saved before with save_config ().
 restore_config ()
 {
-       find config -depth -path "*/.svn/*" -prune -o -type f -print | sed -e 's/config\///' |
+       find config -depth -type f -print | sed -e 's/config\///' |
        while read file
        do
                if [ -f "tmp/$file" ]; then
@@ -54,7 +54,6 @@ prepare_chroot ()
 {
        mkdir tmp/root
        cp -rfdp config_chroot/* tmp/root/
-       find tmp/root/ -name .svn -type d -print0 | xargs -0 rm -rf
 
        lists=/root/tests/common/config_chroot.list
        [ -f config_chroot.list ] && lists="$lists config_chroot.list"