Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-01 | fusefrontend: coalesce grows in Truncate() | Jakob Unterwurzacher | |
We were growing the file block-by-block which was pretty inefficient. We now coalesce all the grows into a single Ftruncate. Also simplifies the code! Simplistic benchmark: Before: $ time truncate -s 1000M foo real 0m0.568s After: $ time truncate -s 1000M foo real 0m0.205s | |||
2016-06-30 | test: split up integration_tests | Jakob Unterwurzacher | |
...into "matrix" and "normal". Also: * Make running multiple packages in parallel safe, see http://stackoverflow.com/questions/23715302/go-how-to-run-tests-for-multiple-packages * Don't depent on test_helper.TmpDir and friends to have a terminating slash |