comparison src/testdir/test55.in @ 6014:a162d41f10e1 v7.4.347

updated for version 7.4.347 Problem: test55 fails on some systems. Solution: Remove the elements that all result in zero and can end up in an arbitrary position.
author Bram Moolenaar <bram@vim.org>
date Thu, 26 Jun 2014 22:33:51 +0200
parents adc4a84f72eb
children f9ec944e4474
comparison
equal deleted inserted replaced
6013:25497677c087 6014:a162d41f10e1
330 :$put =string(reverse(reverse(l))) 330 :$put =string(reverse(reverse(l)))
331 :$put =string(sort(l)) 331 :$put =string(sort(l))
332 :$put =string(reverse(sort(l))) 332 :$put =string(reverse(sort(l)))
333 :$put =string(sort(reverse(sort(l)))) 333 :$put =string(sort(reverse(sort(l))))
334 :$put =string(uniq(sort(l))) 334 :$put =string(uniq(sort(l)))
335 :let l=[7, 9, 18, 12, 22, 10.0e-16, -1, 0xff, 0.22, 'foo']
336 :$put =string(sort(copy(l), 'n'))
335 :let l=[7, 9, 18, 12, 22, 10.0e-16, -1, 0xff, 0, -0, 0.22, 'foo', 'FOOBAR',{}, []] 337 :let l=[7, 9, 18, 12, 22, 10.0e-16, -1, 0xff, 0, -0, 0.22, 'foo', 'FOOBAR',{}, []]
336 :$put =string(sort(copy(l), 'n'))
337 :$put =string(sort(copy(l), 1)) 338 :$put =string(sort(copy(l), 1))
338 :$put =string(sort(copy(l), 'i')) 339 :$put =string(sort(copy(l), 'i'))
339 :$put =string(sort(copy(l))) 340 :$put =string(sort(copy(l)))
340 :" 341 :"
341 :" splitting a string to a List 342 :" splitting a string to a List