1
0
OBS User unknown 2008-10-08 10:03:27 +00:00 committed by Git OBS Bridge
parent f5a5b0112a
commit d742582689
3 changed files with 20 additions and 3 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0311426c823b87fd9ddd3c97616dee91fdb73bf920bc6a419a3dd34cf84a13cb
size 33501
oid sha256:9eeac7ea0e1fe01028ce98e0aaae4ac54f1c297a600059da947f9c871ec8d578
size 34607

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Tue Oct 7 21:40:17 CEST 2008 - meissner@suse.de
- testsuite for check_gcc_output. marked the currently non
working tests as "BROKEN.C" (not built).
- fixed implicit fortify function check to work with newer gccs.
-------------------------------------------------------------------
Mon Oct 6 17:53:46 CEST 2008 - meissner@suse.de

View File

@ -24,7 +24,7 @@ Group: Development/Tools/Building
AutoReqProv: on
Summary: post checks for build after rpms have been created
Version: 1.0
Release: 45
Release: 46
PreReq: aaa_base permissions sed
Source0: %{name}-%{version}.tar.bz2
BuildArch: noarch
@ -56,6 +56,12 @@ install -m 644 checks-data/* $RPM_BUILD_ROOT/usr/lib/build/checks-data
install -m 755 helper/* $RPM_BUILD_ROOT/usr/lib/build/helper
chmod 755 $RPM_BUILD_ROOT/usr/lib/build/checks-data/check*
%check
for i in tests/xx*.c
do
(echo "Executing(%%build)" ; gcc $RPM_OPT_FLAGS -c $i 2>&1)| checks-data/check_gcc_output 2>&1|grep "^[WE]"
done
%clean
rm -rf $RPM_BUILD_ROOT
@ -73,6 +79,10 @@ fi
/usr/lib/build
%changelog
* Tue Oct 07 2008 meissner@suse.de
- testsuite for check_gcc_output. marked the currently non
working tests as "BROKEN.C" (not built).
- fixed implicit fortify function check to work with newer gccs.
* Mon Oct 06 2008 meissner@suse.de
- added checks for newer glibcs destination buffer overflow
warning.