comparison src/testdir/runtest.vim @ 30310:029c59bf78f1 v9.0.0491

patch 9.0.0491: no good reason to build without the float feature Commit: https://github.com/vim/vim/commit/73e28dcc6125f616cf1f2d56443d22428a79e434 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 17 21:08:33 2022 +0100 patch 9.0.0491: no good reason to build without the float feature Problem: No good reason to build without the float feature. Solution: Remove configure check for float and "#ifdef FEAT_FLOAT".
author Bram Moolenaar <Bram@vim.org>
date Sat, 17 Sep 2022 22:15:05 +0200
parents b01eaf122e5a
children 2f295612c46a
comparison
equal deleted inserted replaced
30309:4ba3d27b5357 30310:029c59bf78f1
281 281
282 let message = 'Executed ' . a:test 282 let message = 'Executed ' . a:test
283 if has('reltime') 283 if has('reltime')
284 let message ..= repeat(' ', 50 - len(message)) 284 let message ..= repeat(' ', 50 - len(message))
285 let time = reltime(func_start) 285 let time = reltime(func_start)
286 if has('float') && reltimefloat(time) > 0.1 286 if reltimefloat(time) > 0.1
287 let message = s:t_bold .. message 287 let message = s:t_bold .. message
288 endif 288 endif
289 let message ..= ' in ' .. reltimestr(time) .. ' seconds' 289 let message ..= ' in ' .. reltimestr(time) .. ' seconds'
290 if has('float') && reltimefloat(time) > 0.1 290 if reltimefloat(time) > 0.1
291 let message ..= s:t_normal 291 let message ..= s:t_normal
292 endif 292 endif
293 endif 293 endif
294 call add(s:messages, message) 294 call add(s:messages, message)
295 let s:done += 1 295 let s:done += 1