]> git.saurik.com Git - apt.git/commitdiff
test: Pass -maxdepth 1 when running find in methods dir
authorJulian Andres Klode <jak@debian.org>
Fri, 5 Aug 2016 12:32:56 +0000 (14:32 +0200)
committerJulian Andres Klode <jak@debian.org>
Sat, 6 Aug 2016 00:29:49 +0000 (02:29 +0200)
This fixes a test failures in the cmake branch which contains
sub directories in the methods output dir.

test/integration/test-apt-update-failure-propagation
test/integration/test-bug-738785-switch-protocol
test/integration/test-different-methods-for-same-source

index 18f5efa11f3cc942abe55e184e6ee76da1a1ac1c..ec6bf4a48bcaf50cfbcf4384505ed1f4301d05d4 100755 (executable)
@@ -16,7 +16,7 @@ rm "$NEWMETHODS"
 mkdir "$NEWMETHODS"
 backupIFS="$IFS"
 IFS="$(printf "\n\b")"
-for METH in $(find "$OLDMETHODS" ! -type d); do
+for METH in $(find "$OLDMETHODS" -maxdepth 1 ! -type d); do
        ln -s "$OLDMETHODS/$(basename "$METH")" "$NEWMETHODS"
 done
 IFS="$backupIFS"
index e7d4a67447332928eba4c5fd5f1d6dbab49c44cc..8f8216d0440418d846f410a8043eccc54b831791 100755 (executable)
@@ -45,7 +45,7 @@ rm "$NEWMETHODS"
 mkdir "$NEWMETHODS"
 backupIFS="$IFS"
 IFS="$(printf "\n\b")"
-for METH in $(find "$OLDMETHODS" ! -type d); do
+for METH in $(find "$OLDMETHODS" -maxdepth 1 ! -type d); do
        ln -s "$OLDMETHODS/$(basename "$METH")" "$NEWMETHODS"
 done
 IFS="$backupIFS"
index 7b78841c69ec9ab2b6e8dad20145f2c4054dcaa2..6b3f796b179d7078eefc9bf841951b8fe0d1aeab 100755 (executable)
@@ -17,7 +17,7 @@ rm "$NEWMETHODS"
 mkdir "$NEWMETHODS"
 backupIFS="$IFS"
 IFS="$(printf "\n\b")"
-for METH in $(find "$OLDMETHODS" ! -type d); do
+for METH in $(find "$OLDMETHODS" -maxdepth 1 ! -type d); do
        ln -s "$OLDMETHODS/$(basename "$METH")" "$NEWMETHODS"
 done
 IFS="$backupIFS"