comparison src/testdir/shared.vim @ 30069:cb21745cbbab v9.0.0372

patch 9.0.0372: MS-Windows: "%T" time format does not appear to work Commit: https://github.com/vim/vim/commit/5fbbec180b623cd6ebfc9528be6fa70b4cf664d4 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 3 22:08:11 2022 +0100 patch 9.0.0372: MS-Windows: "%T" time format does not appear to work Problem: MS-Windows: "%T" time format does not appear to work. Solution: Use "%H:%M:%S" instead.
author Bram Moolenaar <Bram@vim.org>
date Sat, 03 Sep 2022 23:15:03 +0200
parents 72c8fbb9e242
children 61db3a2a0e78
comparison
equal deleted inserted replaced
30068:e416076a28f9 30069:cb21745cbbab
99 let g:currentJob = RunCommand(pycmd) 99 let g:currentJob = RunCommand(pycmd)
100 100
101 " Wait for some time for the port number to be there. 101 " Wait for some time for the port number to be there.
102 let port = GetPort() 102 let port = GetPort()
103 if port == 0 103 if port == 0
104 call assert_report(strftime("%T") .. " Can't start " .. a:cmd) 104 call assert_report(strftime("%H:%M:%S") .. " Can't start " .. a:cmd)
105 return 105 return
106 endif 106 endif
107 107
108 call call(function(a:testfunc), [port]) 108 call call(function(a:testfunc), [port])
109 catch 109 catch