Fix t/130-mode: "ls -l" output is not always as expected

[tweaked by apenwarr to remove dependency on non-portable /usr/bin/stat]
This commit is contained in:
Mildred Ki'Lya 2013-01-02 10:53:36 +01:00 committed by Avery Pennarun
commit 1f32d06c4e

View file

@ -1,5 +1,5 @@
umask 0022 umask 0022
redo mode1 redo mode1
MODE="$(ls -l mode1 | cut -d' ' -f1)" MODE=$(python -c 'import os; print oct(os.stat("mode1").st_mode & 07777)')
[ "$MODE" = "-rw-r--r--" ] || exit 78 [ "$MODE" = "0644" ] || exit 78