aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)AuthorFilesLines
2017-09-22Fix parallel test executionEugene Kliuchnikov1-1/+2
2017-09-14Employ make/gcc on Appveyor + push artifacts (#596)Eugene Kliuchnikov1-1/+0
2017-05-29Update (#555)Eugene Kliuchnikov5-19/+19
Update: * new CLI; bro -> brotli; + man page * JNI wrappers preparation (for bazel build) * add raw binary dictionary representation `dictionary.bin` * add ability to side-load brotli RFC dictionary * decoder persists last error now * fix `BrotliDecoderDecompress` documentation * go reader don't block until necessary * more consistent bazel target names * Java dictionary data compiled footprint reduced * Java tests refactoring
2017-04-23Move files & update paths (#541)Eugene Kliuchnikov2-5/+5
* Move files & update paths * Rename build to scripts. * Fix paths * Fix script.
2016-12-09Do not assume that bash is installed in /bin (#477)Frank Denis2-2/+2
This is required in order to run the tests on *BSD.
2016-07-28Add mingw support.Evan Nemerson2-8/+7
2016-07-26Add CMake build system.Evan Nemerson2-0/+63
2016-06-24Update build systemsEvgenii Kliuchnikov2-14/+16
2016-06-16Update build system. Now libraries are produced as build artifacts.Eugene Kliuchnikov3-5/+3
There are currently 3 ways to build: * Easy: `./configure; make` * Simple: use Bazel * Portable: use premake5 to generate XCode / MSVS projects
2016-06-13Convert encoder to plain C.Eugene Kliuchnikov1-1/+1
2016-06-03Fix test file patheustas1-1/+1
2015-09-01Add more testdata.Eugene Klyuchnikov2-0/+0
2015-05-11Expose the quality parameter to the bro.cc tool.Zoltan Szabadka1-9/+11
2015-05-07Handle multiple compressed files per original in the test.Zoltan Szabadka28-22/+21
Add some more test cases that decompress to the empty file or a one byte long file. These test cases have examples for the updated stream header and meta-block header formats.
2015-03-14Makefile fixes and cleanupsDmitry Shachnev1-2/+2
- Distinguish between CC/CFLAGS, CPP/CPPFLAGS and CXX/CXXFLAGS. Do not store compiler flags in CPPFLAGS, which is for preprocessor, and do not try to link files using a preprocessor. - Use COMMON_FLAGS for flags that are for both C and C++. - Drop -m64 flag which is wrong on 32-bit systems. - Use $(MAKE) instead of make, so that parallel building works.
2015-01-13Add more test cases.Zoltan Szabadka27-0/+26
2014-11-17Improvements to the command-line tool.Zoltan Szabadka2-0/+6
- Don't read the whole input to memory. - Support reading from stdin and writing to stdout.
2014-10-30Add command-line tool and tests.Zoltan Szabadka11-0/+26017