vim-patch:8.0.0292 (#7592)

Problem:    The stat test is a bit slow.
Solution:   Remove a couple of sleep comments and reduce another.

a2f28859bf
This commit is contained in:
KunMing Xie
2017-11-22 18:57:56 +08:00
committed by Justin M. Keyes
parent 7b686881a1
commit bb7795e820
2 changed files with 22 additions and 15 deletions

View File

@@ -4,17 +4,17 @@ func Test_existent_file()
let fname = 'Xtest.tmp' let fname = 'Xtest.tmp'
let ts = localtime() let ts = localtime()
sleep 1
let fl = ['Hello World!'] let fl = ['Hello World!']
call writefile(fl, fname) call writefile(fl, fname)
let tf = getftime(fname) let tf = getftime(fname)
sleep 1
let te = localtime() let te = localtime()
call assert_true(ts <= tf && tf <= te) call assert_true(ts <= tf && tf <= te)
call assert_equal(strlen(fl[0] . "\n"), getfsize(fname)) call assert_equal(strlen(fl[0] . "\n"), getfsize(fname))
call assert_equal('file', getftype(fname)) call assert_equal('file', getftype(fname))
call assert_equal('rw-', getfperm(fname)[0:2]) call assert_equal('rw-', getfperm(fname)[0:2])
call delete(fname)
endfunc endfunc
func Test_existent_directory() func Test_existent_directory()
@@ -32,12 +32,19 @@ func Test_checktime()
call writefile(fl, fname) call writefile(fl, fname)
set autoread set autoread
exec 'e' fname exec 'e' fname
" FAT has a granularity of 2 seconds, otherwise it's usually 1 second
if has('win32')
sleep 2 sleep 2
else
sleep 2
endif
let fl = readfile(fname) let fl = readfile(fname)
let fl[0] .= ' - checktime' let fl[0] .= ' - checktime'
call writefile(fl, fname) call writefile(fl, fname)
checktime checktime
call assert_equal(fl[0], getline(1)) call assert_equal(fl[0], getline(1))
call delete(fname)
endfunc endfunc
func Test_nonexistent_file() func Test_nonexistent_file()

View File

@@ -812,7 +812,7 @@ static const int included_patches[] = {
// 295, // 295,
294, 294,
// 293, // 293,
// 292, 292,
291, 291,
290, 290,
// 289, // 289,