summaryrefslogtreecommitdiff
path: root/src/testdir/test_blob.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1022: various parts of code not covered by testsv8.2.1022Bram Moolenaar2020-06-201-0/+1
| | | | | Problem: Various parts of code not covered by tests. Solution: Add more tests. (Yegappan Lakshmanan, closes #6300)
* patch 8.2.0634: crash with null partial and blobv8.2.0634Bram Moolenaar2020-04-251-0/+6
| | | | | | Problem: Crash with null partial and blob. Solution: Check for NULL pointer. Add more tests. (Yegappan Lakshmanan, closes #5984)
* patch 8.2.0633: crash when using null partial in filter()v8.2.0633Bram Moolenaar2020-04-241-0/+1
| | | | | Problem: Crash when using null partial in filter(). Solution: Fix crash. Add more tests. (Yegappan Lakshmanan, closes #5976)
* patch 8.2.0619: null dict is not handled like an empty dictv8.2.0619Bram Moolenaar2020-04-231-0/+1
| | | | | Problem: Null dict is not handled like an empty dict. Solution: Fix the code and add tests. (Yegappan Lakshmanan, closes #5968)
* patch 8.2.0615: regexp benchmark stest is old stylev8.2.0615Bram Moolenaar2020-04-211-0/+1
| | | | | | Problem: Regexp benchmark stest is old style. Solution: Make it a new style test. Fix using a NULL list. Add more tests. (Yegappan Lakshmanan, closes #5963)
* patch 8.2.0610: some tests are still old stylev8.2.0610Bram Moolenaar2020-04-201-0/+3
| | | | | Problem: Some tests are still old style. Solution: Convert to new style tests. (Yegappan Lakshmanan, closes #5957)
* patch 8.2.0521: crash when reading a blob failsv8.2.0521Bram Moolenaar2020-04-061-0/+3
| | | | | | Problem: Crash when reading a blob fails. Solution: Avoid keeping a pointer to a freed blob object. (Dominique Pelle, closes #5890) Adjust error messages.
* patch 8.2.0448: various functions not properly testedv8.2.0448Bram Moolenaar2020-03-251-0/+4
| | | | | | Problem: Various functions not properly tested. Solution: Add more tests, especially for failures. (Yegappan Lakshmanan, closes #5843)
* patch 8.2.0418: code in eval.c not sufficiently covered by testsv8.2.0418Bram Moolenaar2020-03-201-0/+1
| | | | | Problem: Code in eval.c not sufficiently covered by tests. Solution: Add more tests. (Yegappan Lakshmanan, closes #5815)
* patch 8.2.0184: blob test failsv8.2.0184Bram Moolenaar2020-01-301-1/+5
| | | | | Problem: Blob test fails. Solution: Check for different error when float feature is missing.
* patch 8.2.0183: tests fail when the float feature is disabledv8.2.0183Bram Moolenaar2020-01-301-1/+1
| | | | | Problem: Tests fail when the float feature is disabled. Solution: Skip tests that don't work without float support.
* patch 8.2.0121: filter() and map() on blob don't workv8.2.0121Bram Moolenaar2020-01-151-7/+11
| | | | | Problem: filter() and map() on blob don't work. Solution: Correct the code. (closes #5483)
* patch 8.1.1953: more functions can be used as a methodv8.1.1953Bram Moolenaar2019-08-311-1/+1
| | | | | Problem: More functions can be used as a method. Solution: Allow more functions to be used as a method.
* patch 8.1.1671: copying a blob may result in it being lockedv8.1.1671Bram Moolenaar2019-07-121-0/+4
| | | | | Problem: Copying a blob may result in it being locked. Solution: Reset v_lock. (Ken Takata, closes #4648)
* patch 8.1.0802: negative index doesn't work for Blobv8.1.0802Bram Moolenaar2019-01-241-0/+7
| | | | | Problem: Negative index doesn't work for Blob. Solution: Make it work, add a test. (closes #3856)
* patch 8.1.0798: changing a blob while iterating over it works strangelyv8.1.0798Bram Moolenaar2019-01-231-0/+14
| | | | | Problem: Changing a blob while iterating over it works strangely. Solution: Make a copy of the Blob before iterating.
* patch 8.1.0793: incorrect error messages for functions that take a Blobv8.1.0793Bram Moolenaar2019-01-221-2/+4
| | | | | | Problem: Incorrect error messages for functions that now take a Blob argument. Solution: Adjust the error messages. (Dominique Pelle, closes #3846)
* patch 8.1.0765: string format of a Blob can't be parsed backv8.1.0765Bram Moolenaar2019-01-171-3/+12
| | | | | Problem: String format of a Blob can't be parsed back. Solution: Use 0z format.
* patch 8.1.0756: copy() does not make a copy of a Blobv8.1.0756Bram Moolenaar2019-01-151-0/+7
| | | | | Problem: copy() does not make a copy of a Blob. Solution: Make a copy.
* patch 8.1.0755: error message for get() on a Blob with invalid indexv8.1.0755Bram Moolenaar2019-01-151-1/+12
| | | | | Problem: Error message for get() on a Blob with invalid index. Solution: Return an empty Blob, like get() on a List does.
* patch 8.1.0742: not all Blob operations are testedv8.1.0742Bram Moolenaar2019-01-131-0/+30
| | | | | Problem: Not all Blob operations are tested. Solution: Add more testing for Blob.
* patch 8.1.0736: code for Blob not sufficiently testedv8.1.0736Bram Moolenaar2019-01-131-1/+62
| | | | | Problem: Code for Blob not sufficiently tested. Solution: Add more tests. Fix uncovered crash. Add test_null_blob().
* patch 8.1.0735: cannot handle binary datav8.1.0735Bram Moolenaar2019-01-121-0/+179
Problem: Cannot handle binary data. Solution: Add the Blob type. (Yasuhiro Matsumoto, closes #3638)