git-p4: avoid "stat" command in t9815 git-p4-submit-fail

Replace the stat command with the ls command to check file mode
bits.  The stats command is not available on Windows and has
different command line options on OS X.

Signed-off-by: Lars Schneider <larsxschneider@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Lars Schneider 2015-10-12 10:03:03 -07:00 коммит произвёл Junio C Hamano
Родитель 22f698cb18
Коммит 3a692b3c87
1 изменённых файлов: 2 добавлений и 5 удалений

Просмотреть файл

@ -417,11 +417,8 @@ test_expect_success 'cleanup chmod after submit cancel' '
! p4 fstat -T action text &&
test_path_is_file text+x &&
! p4 fstat -T action text+x &&
if test_have_prereq !CYGWIN
then
stat --format=%A text | egrep ^-r-- &&
stat --format=%A text+x | egrep ^-r-x
fi
ls -l text | egrep ^-r-- &&
ls -l text+x | egrep ^-r-x
)
'