Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-07-07 | Make these files compile with C++. | josh.macdonald | |
2008-07-06 | Add mutator test working. | josh.macdonald | |
2008-07-06 | Fix the modify test. | josh.macdonald | |
2008-07-05 | New ChangeListMutator functionality. | josh.macdonald | |
2008-07-05 | Fix stdin/stdout problem on Windows, issue 34. | josh.macdonald | |
2008-07-03 | Test for encode/decode w/ single first-byte difference. Uncovered a couple of | josh.macdonald | |
incorrect assertions in xdelta3 proper. More tests coming... | |||
2008-07-03 | Encode/Decode test operating correctly, now failing with source data. | josh.macdonald | |
2008-07-02 | Add new test for streaming encode/decode. The encoder writes directly | josh.macdonald | |
to the decoder. The test passes for sizes < Constants::BLOCK_SIZE so far, needs work. | |||
2008-06-30 | A test is taking shape... | josh.macdonald | |
2008-06-27 | Adds new testing directory for a C++ test, makes xdelta3-test.h compile with ↵ | josh.macdonald | |
C++. Removes xdelta3-test2.h, moves contents into xdelta3-regtest.cc | |||
2008-06-20 | Add a new test file, add a Mersenne Twister implementation, and | josh.macdonald | |
begin work on a new merge command. The new "file_spec" model will allow working with randomly-generated inputs without having to write the entire file to disk, allowing better streaming tests: next! | |||
2008-04-22 | First successful merge command. :) | josh.macdonald | |
2008-04-22 | Install a proper fix for the looping problem in issue 70. Needs better testing | josh.macdonald | |
but good for now. | |||
2008-04-20 | No, doesn't work but this is a little closer. The bug-fix for the | josh.macdonald | |
infinite loop in issue 70 is breaking identical-input detection too. | |||
2008-04-20 | It's plausible that this merge code actually works; untested. | josh.macdonald | |
2008-04-19 | Cleanup of previous. New xd3_merge_input_output used in both | josh.macdonald | |
main_merge_arguments and main_merge_output. | |||
2008-04-19 | Straighten up the logic for calling xd3_merge_inputs in both | josh.macdonald | |
main_merge_arguments and main_merge_output. | |||
2008-04-15 | Fixes for issue 70. The test inputs tickled a case where the | josh.macdonald | |
non-blocking API would not make progress, searching for match on the page boundary and repeatedly asking the application to get another source block. This is only a non-blocking issue, glad it's fixed. I'll add encode_decode_test to my test suite before another release. | |||
2008-04-09 | Add mechanism for processing merge arguments in order, memory | josh.macdonald | |
management for xd3_whole_target structures being passed between arguments-processing and main merge_output function. | |||
2008-04-02 | merge command now successfully rewrites a single input. success! | josh.macdonald | |
2008-04-02 | Merge command passes its first smoke test, reproduces a delta by | josh.macdonald | |
instruction-level rewriting of the input to the output. Hits an assertion due to target-copies that cross window boundaries--next step is to fix the output window size to the last input window size. This fixes an important bug in xd3_choose_instruction, which assumed that copy instructions were at least four bytes, but this is no longer the case for merged outputs (at least for the case where window size changes, which will not be allowed in future). | |||
2008-03-31 | Implement more of "xdelta3 merge" command. Compile fixes. | josh.macdonald | |
Work on xdelta3-regtest.py. | |||
2008-03-14 | Fix for issue 67, test now fails as root with an error message. | josh.macdonald | |
2008-02-11 | Can't explain how the usize_t->uint32_t changes here solve the problem | josh.macdonald | |
described by issue 61, but it's likely the same as issue 66 and I'm going to apply them blindly with TODOs to try and understand it later. | |||
2007-12-28 | Fix for DJGPP (1/4)? | josh.macdonald | |
2007-12-28 | Fixes issue 58. Incorrect looping condition in xd3_smatch() caused | josh.macdonald | |
checking for matches with incorrect checksums, detected by debug builds. This also improves speed slightly and potentially degrades compression where the sprevsz array had spurious matches beyond its actual coverage. | |||
2007-12-27 | Adding more support for "merge" command. | josh.macdonald | |
2007-12-17 | Call main_input() recursively for main_merge_arguments. | josh.macdonald | |
2007-12-17 | Fix. | josh.macdonald | |
2007-12-17 | Patches for Makefile.mingw and xdelta3.h comments, work on "merge" | josh.macdonald | |
command. Fix for new return value in stream_overflow. | |||
2007-12-15 | Patches for mingw. | josh.macdonald | |
2007-12-15 | Compile on OS X, better implementation of UNALIGNED_OK=0 small checksum. | josh.macdonald | |
2007-12-14 | Add skeleton for "merge" command. | josh.macdonald | |
2007-12-14 | Fix another snprintf issue. (Wish I had "patch" on my cygwin box... Wish | josh.macdonald | |
I wasn't using a Cygwin box for dev purposes.) | |||
2007-12-14 | Fix a few more uint uses. | josh.macdonald | |
2007-12-14 | Replace uint with usize_t, more portable. | josh.macdonald | |
2007-12-14 | Fixes for Win32 and vsnprintf. | josh.macdonald | |
2007-12-14 | 80-col fixes. | josh.macdonald | |
2007-12-14 | Implement UNALIGNED_OK for xd3_small_cksum_update, hoping to fix | josh.macdonald | |
test failure on Xscale/ARM platform. | |||
2007-12-13 | A few cleanups -- xd3_scksum should have been using uint32_t, but I | josh.macdonald | |
doubt that is the real problem. I suspect the problem on ARM/Xscale has to do with unaligned access issues. | |||
2007-12-07 | Release 3.0t | josh.macdonald | |
2007-12-07 | Patches from A. Mennucc for Debian. Fixing makfile for Cygwin | josh.macdonald | |
conditional compilation, which is irregular. | |||
2007-12-06 | Adjust the low-end range for command_line_arguments unittest. I wish this | josh.macdonald | |
didn't depend on the system rand() function, but it's portable at least. | |||
2007-12-05 | Fix bug in xd3_set_source, the optimization for shiftby/maskby were | josh.macdonald | |
in some cases not setting those variables, which are used by xd3_blksize_div | |||
2007-12-02 | Fix recode, recode test. | josh.macdonald | |
2007-12-02 | Fix an off-by-one bug lurking in the array initialization | josh.macdonald | |
in djw_compute_mtf_1_2 | |||
2007-12-02 | Working on the test failure in dbeug mode, partial recode test written. | josh.macdonald | |
2007-11-27 | Diagnose expected non-failures test failure introfuced in 3.0s relating | josh.macdonald | |
to DJW and compiler optimization level. Mysterious. | |||
2007-11-26 | The rabin-karp checksum looks better in testing but doesn't really | josh.macdonald | |
seem to improve things in practice. Removed HASH_PRIME. | |||
2007-11-15 | Get uniqueness and fullness metrics working, add compaction parameter for | josh.macdonald | |
hash-table size bias. |