diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2018-05-08 23:41:43 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-05-08 23:43:30 +0200 |
commit | 90af2efeeea09d934811af5392afe4b3020ffa9b (patch) | |
tree | 0ae8e7a0d4efd352b032e9b82a021fabd3aae24c | |
parent | 2de02b30bb45f28b8a47ff86210dda3be5566f91 (diff) | |
download | aports-90af2efeeea09d934811af5392afe4b3020ffa9b.tar.bz2 aports-90af2efeeea09d934811af5392afe4b3020ffa9b.tar.xz |
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;
^
-rw-r--r-- | main/wget/APKBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/main/wget/APKBUILD b/main/wget/APKBUILD index a5c3a7554d..5cb28638d4 100644 --- a/main/wget/APKBUILD +++ b/main/wget/APKBUILD @@ -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() { |