Bug 1037023
Summary: | coreutils FTBFS if "-Werror=format-security" flag is used | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Dhiru Kholia <dkholia> |
Component: | coreutils | Assignee: | Ondrej Vasik <ovasik> |
Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | rawhide | CC: | admiller, bressers, kdudka, kzak, ooprala, ovasik, pbrady, p, twaugh |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2013-12-17 21:58:11 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 1038083 |
Description
Dhiru Kholia
2013-12-03 02:56:52 UTC
This is intentional and proposed fix can't be used - it is internal unit test for xvasprintf gnulib module checking the behaviour for empty format string. There was already some attempt to silence gcc warning about zero-length format string, it seems to be insufficient for the format-security warning checker. ATM I see two possibilities - one is ifdef disabling this test if WError is active, second one is to disable this gnulib test for our builds completely - we already do that for several tests which fail in koji mock environment quite often. gcc pragmas to disable some of the warnings will be used as solution in gnulib - http://lists.gnu.org/archive/html/bug-gnulib/2013-12/txtxl7suqXdqm.txt . I need the same patch for diffutils in bug #1037038 but it doesn't seem to fix the problem. test-xvasprintf.c: In function 'test_xasprintf': test-xvasprintf.c:104:5: error: format not a string literal and no format arguments [-Werror=format-security] result = xasprintf (empty); Tim the above referenced one wasn't added to gnulib. Could you try the one that was actually added? http://git.sv.gnu.org/gitweb/?p=gnulib.git;a=commitdiff;h=4e42bcc4 Fixed as part of coreutils-8.22 rebase. |