mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
Running the test suite with the autotools build system #423
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ryandesign on GitHub (May 7, 2022).
Is it intended to be able to run the test suite when using the undocumented autotools build system?
After running
./bootstrapand./configureandmakeI ranmake checkbut got:and trying
make testI got:I see that there is a tests directory with a Makefile in it, but I tried
make -C tests testand got:If I use this patch then
make -C tests testworks:however I don't know if that change should be necessary or if I'm missing something.
Maybe what I'm missing is that tests/Makefile is intended to work with the non-autotools Makefile that brotli ships with? If so, maybe instead of modifying tests/Makefile the check target should get some new code so that
make checkdoes something equivalent?