main/wget: don't run fuzz tests, they are broken

There are many errors like this one:

    wget_options_fuzzer.c: In function 'LLVMFuzzerTestOneInput':
    wget_options_fuzzer.c:87:9: error: assignment of read-only variable 'stderr'
      stderr = fopen("/dev/null", "w");
             ^
    wget_options_fuzzer.c:98:9: error: assignment of read-only variable 'stderr'
      stderr = bak;
             ^
This commit is contained in:
Jakub Jirutka 2018-05-08 23:41:43 +02:00
parent 2de02b30bb
commit 90af2efeee

View File

@ -40,7 +40,10 @@ build() {
check() {
cd "$builddir"
make check
# FIXME: We're not running top-level "check" to skip fuzz tests that
# are currently broken.
make -C tests check
}
package() {