cherry-pick: add t3512 for submodule updates
[gitweb.git] / t / test-lib-functions.sh
index c617c826db94f2e3c0ed01fe079d3ae14ac3b883..acd9a55cacf9d4c825e3f2e7b1b229aa995677f1 100644 (file)
@@ -489,6 +489,17 @@ test_path_is_dir () {
        fi
 }
 
+# Check if the directory exists and is empty as expected, barf otherwise.
+test_dir_is_empty () {
+       test_path_is_dir "$1" &&
+       if test -n "$(ls -a1 "$1" | egrep -v '^\.\.?$')"
+       then
+               echo "Directory '$1' is not empty, it contains:"
+               ls -la "$1"
+               return 1
+       fi
+}
+
 test_path_is_missing () {
        if [ -e "$1" ]
        then