Eric Biggers
a735fa830f
lib, programs: remove all unnecessary 'extern' keywords
...
'extern' on function declarations is redundant.
2020-04-17 21:27:56 -07:00
Eric Biggers
0015560a82
test_slow_decompression: skip by default since it's flaky
...
Since this is a performance-based test, unfortunately it's always going
to be flaky, so it needs to be skipped by default.
2019-08-30 00:14:43 -05:00
Eric Biggers
8474418509
test_util: make alloc_guarded_buffer() return void
...
Its return value is not checked, which is a bug. But it's a test
utility, so it's better to exit on failure instead.
2019-08-30 00:14:43 -05:00
Eric Biggers
d3878bc8ae
programs: new test program - test_incomplete_codes
2018-12-28 10:25:44 -06:00
Eric Biggers
c398e237b6
programs: move output_bitstream to test_util
2018-12-28 10:25:44 -06:00
Eric Biggers
ce6a95f47b
programs: add test_util
...
Move program utility functions that are used only by "test programs"
(i.e. not by gzip/gunzip) from prog_util.{c,h} into test_util.{c,h}.
This reduces the code that is compiled for the default build target,
which excludes the test programs.
2018-12-28 10:25:44 -06:00