Bram Moolenaar
36d1c0fef4
patch 7.4.2186
...
Problem: Timers test is flaky.
Solution: Relax the sleep time check.
2016-08-08 22:46:14 +02:00
Bram Moolenaar
71dd9744cf
patch 7.4.2185
...
Problem: Test glob2regpat does not test much.
Solution: Add a few more test cases. (Dominique Pelle)
2016-08-08 22:42:04 +02:00
Bram Moolenaar
7a9a5f4019
patch 7.4.2184
...
Problem: Tests that use RunVim() do not actually perform the test.
Solution: Use "return" instead of "call". (Ken Takata)
2016-08-08 22:34:14 +02:00
Bram Moolenaar
09de17536d
patch 7.4.2183
...
Problem: Sign tests are old style.
Solution: Turn them into new style tests. (Dominique Pelle)
2016-08-08 22:26:48 +02:00
Bram Moolenaar
2147746cf8
patch 7.4.2182
...
Problem: Color Grey40 used in startup but not in the short list.
Solution: Add Grey40 to the builtin colors.
2016-08-08 20:43:27 +02:00
Bram Moolenaar
a772ec5e91
patch 7.4.2181
...
Problem: Compiler warning for unused variable.
Solution: Remove it. (Dominique Pelle)
2016-08-07 20:20:50 +02:00
Bram Moolenaar
b73598e2f0
patch 7.4.2180
...
Problem: There is no easy way to stop all timers. There is no way to
temporary pause a timer.
Solution: Add timer_stopall() and timer_pause().
2016-08-07 18:22:53 +02:00
Bram Moolenaar
e4a76ad0e7
patch 7.4.2179
...
Problem: Reading from stdin test fails on MS-Windows.
Solution: Strip the extra space.
2016-08-07 16:50:10 +02:00
Bram Moolenaar
3a93838339
patch 7.4.2178
...
Problem: No test for reading from stdin.
Solution: Add a test.
2016-08-07 16:36:40 +02:00
Bram Moolenaar
ba98bef191
patch 7.4.2177
...
Problem: No testing for -C and -N command line flags, file arguments,
startuptime.
Solution: Add tests.
2016-08-07 15:51:39 +02:00
Bram Moolenaar
a8e691d449
patch 7.4.2176
...
Problem: #ifdefs in main() are complicated.
Solution: Always define vim_main2(). Move params to the file level.
(suggested by Ken Takata)
2016-08-07 15:19:26 +02:00
Bram Moolenaar
812ad4f3a2
patch 7.4.2175
...
Problem: Insufficient testing of cscope.
Solution: Add more tests. (Dominique Pelle)
2016-08-07 14:03:13 +02:00
Bram Moolenaar
c8ce615299
patch 7.4.2174
...
Problem: Adding duplicate flags to 'whichwrap' leaves commas behind.
Solution: Also remove the commas. (Naruhiko Nishino)
2016-08-07 13:48:20 +02:00
Bram Moolenaar
3321e9d8a3
patch 7.4.2173
...
Problem: Can't test help on MS-Windows.
Solution: Skip the test.
2016-08-06 23:03:59 +02:00
Bram Moolenaar
472a0a880a
patch 7.4.2172
...
Problem: No test for "vim --help".
Solution: Add a test.
2016-08-06 22:31:42 +02:00
Bram Moolenaar
00ff380295
patch 7.4.2171
...
Problem: MS-Windows build fails.
Solution: Add QueryPerformanceCounter().
2016-08-06 22:27:28 +02:00
Bram Moolenaar
8e97bd74b5
patch 7.4.2170
...
Problem: Cannot get information about timers.
Solution: Add timer_info().
2016-08-06 22:05:07 +02:00
Bram Moolenaar
446cce6d53
patch 7.4.2169
...
Problem: Startup test gets stuck on MS-Windows.
Solution: Use double quotes.
2016-08-06 21:37:27 +02:00
Bram Moolenaar
5b4a3767f6
patch 7.4.2168
...
Problem: Not running the startup test on MS-Windows.
Solution: Write vimcmd.
2016-08-06 20:36:34 +02:00
Bram Moolenaar
c96a2f3b88
patch 7.4.2167
...
Problem: Small build can't run tests.
Solution: Don't try setting 'packpath'.
2016-08-06 19:45:31 +02:00
Bram Moolenaar
328604307b
patch 7.4.2166
...
Problem: Small build can't run startup test.
Solution: Skip the test.
2016-08-06 19:24:23 +02:00
Bram Moolenaar
83b3c3d8a0
patch 7.4.2165
...
Problem: Startup test fails on MS-Windows.
Solution: Don't check output if RunVim() returns zero.
2016-08-06 19:16:43 +02:00
Bram Moolenaar
66459b7c98
patch 7.4.2164
...
Problem: It is not possible to use plugins in an "after" directory to tune
the behavior of a package.
Solution: First load plugins from non-after directories, then packages and
finally plugins in after directories.
Reset 'loadplugins' before executing --cmd arguments.
2016-08-06 19:01:55 +02:00
Bram Moolenaar
d76a0c15f8
patch 7.4.2163
...
Problem: match() and related functions tested with old style test.
Solution: Convert to new style test. (Hirohito Higashi)
2016-08-06 15:29:22 +02:00
Bram Moolenaar
7522f69821
patch 7.4.2162
...
Problem: Result of getcompletion('', 'sign') depends on previous
completion.
Solution: Call set_context_in_sign_cmd(). (Dominique Pelle)
2016-08-06 14:12:50 +02:00
Bram Moolenaar
7ab6defcaf
patch 7.4.2161
...
Problem: Expression test fails without conceal feature.
Solution: Only check "conceal" with the conceal feature.
2016-08-05 22:51:13 +02:00
Bram Moolenaar
7dc5e2e486
patch 7.4.2160
...
Problem: setmatches() mixes up values. (Nikolai Pavlov)
Solution: Save the string instead of reusing a shared buffer.
2016-08-05 22:22:06 +02:00
Bram Moolenaar
5971dab112
patch 7.4.2159
...
Problem: Insufficient testing for cscope.
Solution: Add more tests. (Dominique Pelle)
2016-08-05 21:25:29 +02:00
Bram Moolenaar
b650b9878e
patch 7.4.2158
...
Problem: Result of getcompletion('', 'cscope') depends on previous
completion. (Christian Brabandt)
Solution: Call set_context_in_cscope_cmd().
2016-08-05 20:35:13 +02:00
Bram Moolenaar
46c4d4ac66
patch 7.4.2157
...
Problem: Test_job_start_fails() is expected to report memory leaks, making
it hard to see other leaks in test_partial.
Solution: Move Test_job_start_fails() to a separate test file.
2016-08-05 19:31:57 +02:00
Bram Moolenaar
c90f2aedd0
patch 7.4.2156
...
Problem: Compiler warning.
Solution: Add type cast. (Ken Takata, Mike Williams)
2016-08-04 22:00:15 +02:00
Bram Moolenaar
9d5b876d45
patch 7.4.2155
...
Problem: Quotes make GUI test fail on MS-Windows.
Solution: Remove quotes, strip white space.
2016-08-04 21:21:13 +02:00
Bram Moolenaar
fe9489233c
patch 7.4.2154
...
Problem: Test_communicate() fails sometimes.
Solution: Add it to the flaky tests.
2016-08-04 21:11:32 +02:00
Bram Moolenaar
877e957798
patch 7.4.2153
...
Problem: GUI test isn't testing much.
Solution: Turn into a new style test. Execute a shell command.
2016-08-04 20:05:50 +02:00
Bram Moolenaar
ee695f787a
patch 7.4.2152
...
Problem: No proper translation of messages with a count.
Solution: Use ngettext(). (Sergey Alyoshin)
2016-08-03 22:08:45 +02:00
Bram Moolenaar
cf25fdb8f1
patch 7.4.2151
...
Problem: Quickfix test fails on MS-Windows.
Solution: Close the help window. (Christian Brabandt)
2016-08-03 21:04:53 +02:00
Bram Moolenaar
4c38d66d25
patch 7.4.2150
...
Problem: Warning with MinGW 64. (John Marriott)
Solution: Change return type. (Ken Takata)
2016-08-03 20:54:57 +02:00
Bram Moolenaar
7cba71d7e3
patch 7.4.2149
...
Problem: If a test leaves a window open a following test may fail.
Solution: Always close extra windows after running a test.
2016-08-02 23:04:49 +02:00
Bram Moolenaar
edf634e0f1
patch 7.4.2148
...
Problem: Not much testing for cscope.
Solution: Add a test that uses the cscope program. (Christian Brabandt)
2016-08-02 23:01:40 +02:00
Bram Moolenaar
abb71fbd39
patch 7.4.2147
...
Problem: test_alot fails.
Solution: Close window.
2016-08-02 22:51:42 +02:00
Bram Moolenaar
472472898a
patch 7.4.2146
...
Problem: Not enough testing for popup menu. CTRL-E does not always work
properly.
Solution: Add more tests. When using CTRL-E check if the popup menu is
visible. (Christian Brabandt)
2016-08-02 22:36:02 +02:00
Bram Moolenaar
86f2cd5bc5
patch 7.4.2145
...
Problem: Win32: Using CreateThread/ExitThread is not safe.
Solution: Use _beginthreadex and return from the thread. (Ken Takata)
2016-08-02 21:55:17 +02:00
Bram Moolenaar
796aa9c804
patch 7.4.2144
...
Problem: On MS-Windows quickix does not handle a line with 1023 bytes
ending in CR-LF properly.
Solution: Don't consider CR a line break. (Ken Takata)
2016-08-02 21:41:28 +02:00
Bram Moolenaar
bc7ce675b2
patch 7.4.2143
...
Problem: A funccal is garbage collected while it can still be used.
Solution: Set copyID in all referenced functions. Do not list lambda
functions with ":function".
2016-08-01 22:49:22 +02:00
Bram Moolenaar
8dd3a43d75
patch 7.4.2142
...
Problem: Leaking memory when redefining a function.
Solution: Don't increment the function reference count when it's found by
name. Don't remove the wrong function from the hashtab. More
reference counting fixes.
2016-08-01 20:46:25 +02:00
Bram Moolenaar
ba96e9af38
patch 7.4.2141
...
Problem: Coverity reports bogus NULL check.
Solution: When checking for a variable in the funccal scope don't pass the
varname.
2016-08-01 17:10:20 +02:00
Bram Moolenaar
acadbeabe1
patch 7.4.2140
...
Problem: Tiny build fails.
Solution: Add dummy typedefs.
2016-08-01 16:35:59 +02:00
Bram Moolenaar
0588d4f9d2
patch 7.4.2139
...
Problem: :delfunction causes illegal memory access.
Solution: Correct logic when deciding to free a function.
2016-08-01 16:29:47 +02:00
Bram Moolenaar
2d3d60a7d4
patch 7.4.2138
...
Problem: Test 86 and 87 fail.
Solution: Call func_ref() also for regular functions.
2016-08-01 16:27:23 +02:00
Bram Moolenaar
437bafe4c8
patch 7.4.2137
...
Problem: Using function() with a name will find another function when it is
redefined.
Solution: Add funcref(). Refer to lambda using a partial. Fix several
reference counting issues.
2016-08-01 15:40:54 +02:00