aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)AuthorFilesLines
2024-01-15add brcat alias + flag to decompress concatenated streamsEvgenii Kliuchnikov1-0/+12
PiperOrigin-RevId: 598652401
2024-01-11add comment (fingerprint) CLI featureEvgenii Kliuchnikov1-0/+84
PiperOrigin-RevId: 597489910
2023-09-11reword cmake test generator warningEvgenii Kliuchnikov3-78/+0
PiperOrigin-RevId: 564371898
2023-07-05add tests with UTF8/UTF16 non-ASCII textEvgenii Kliuchnikov4-0/+12
PiperOrigin-RevId: 545424981
2020-08-26Fix build files (#829)Eugene Kliuchnikov1-11/+13
2018-09-27Cross compilation support (#709)Stephen Kyle4-2/+12
* build: add cross-compilation support to make Set CROSS_COMPILE when running make to use the selected cross compilation toolchain, such as arm-linux-gnueabihf, or aarch64-linux-gnu. Testing requires the presence of qemu - 'qemu-$(ARCH)' will be executed, where ARCH is the first part of the toolchain triplet. * build: add cross-compilation support to cmake If C_COMPILER/CXX_COMPILER/CC/CXX are found to have cross-compilation triplets in front of the compiler, then qemu will be used to execute the tests. * CI: add arm-linux-gnueabihf-gcc builder to Travis The version of qemu available in Ubuntu trusty (as provided by Travis) appears to have a bug in qemu-aarch64, which leads to the compatibility tests failing on some inputs, erroneously rejecting the input as corrupt. Once Travis supports xenial, we could add an aarch64-gnu-linux-gcc builder as well. * CI: propagate cmake errors out of .travis.sh Seems like even if cmake fails, the error isn't picked up by Travis.
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