From: Jim Meyering Date: Sat, 8 Mar 2003 09:48:27 +0000 (+0000) Subject: . X-Git-Tag: v4.5.10~80 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3ba019fec53fec5f7631a3fb60c5a1c740025cb6;p=thirdparty%2Fcoreutils.git . --- diff --git a/src/du-tests b/src/du-tests new file mode 100755 index 0000000000..bfffbc96a1 --- /dev/null +++ b/src/du-tests @@ -0,0 +1,25 @@ +#!/bin/bash +test -x "$DU1" || { echo DU1 envvar not set; exit 1; } +test -x "$DU2" || { echo DU2 envvar not set; exit 1; } +# Expects $DU1 and $DU2 to be the binaries to compare. +d1=$(mktemp -d) +cp -a $DU1 $d1/du +d2=$(mktemp -d) +cp -a $DU2 $d2/du + +for args in \ + '-Sa .' \ + '-Sa ../..' \ + '-Sa a' \ + '-a a' \ + '-ca .' \ + '-ca ..' \ + '-ca ../..' \ + '-ca /tmp' \ + '-ca a' \ + ; do + echo Args: $args ====================== + diff -u --label=$DU1 --label=$DU2 \ + <(PATH=$d1 du $args 2>&1) <(PATH=$d2 du $args 2>&1) +done +rm -rf $d1 $d2