From: Rob Browning Date: Wed, 1 Jun 2011 00:49:27 +0000 (-0500) Subject: Don't use xstat.lutime() in test-meta.sh when xstat.utime() will do. X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=9cdd85e61e807d06fa39808a2d013cdef1d12fe4;p=packages%2Fb%2Fbup.git Don't use xstat.lutime() in test-meta.sh when xstat.utime() will do. Signed-off-by: Rob Browning --- diff --git a/t/test-meta.sh b/t/test-meta.sh index 9227808..5ce48d5 100755 --- a/t/test-meta.sh +++ b/t/test-meta.sh @@ -128,8 +128,8 @@ if actually-root; then PYTHONPATH="$TOP/lib" \ python -c "from bup import xstat; \ x = xstat.timespec_to_nsecs((42, 0));\ - xstat.lutime('testfs/src/foo', (x, x));\ - xstat.lutime('testfs/src/bar', (x, x));" + xstat.utime('testfs/src/foo', (x, x));\ + xstat.utime('testfs/src/bar', (x, x));" cd testfs WVPASS bup meta -v --create --recurse --file src.meta src bup meta -tvf src.meta