~ubuntu-branches/ubuntu/vivid/flac/vivid

« back to all changes in this revision

Viewing changes to .pc/0002-Add-missing-config.h-includes.patch/src/test_libFLAC++/main.cpp

  • Committer: Package Import Robot
  • Author(s): Fabian Greffrath, Jackson Doak, Fabian Greffrath
  • Date: 2014-12-01 18:32:57 UTC
  • mfrom: (16.2.1 experimental)
  • Revision ID: package-import@ubuntu.com-20141201183257-fqz1dxbpf8lipaix
Tags: 1.3.1-1
[ Jackson Doak ]
* Disable silent rules
* Enable hardening
* Add symbols files

[ Fabian Greffrath ]
* Adapt debian/watch file to reflect actual upstream versioning scheme.
* Imported Upstream version 1.3.1
  + Fixes CVE-2014-8962 and CVE-2014-9028 (Closes: #770918).
  + Support for 3DNOW! optimizations has been removed.
  + Localized RU documentation has been removed.
* Drop patches applied upstream.
* Backport patch from upstream GIT to fix another input validation bug.
* Fix "privacy-breach-logo" and "privacy-breach-w3c-valid-html"
  lintian errors.
* In debian/rules, remove the "override_dh_makeshlibs" rule
  for the symbols files to have effect.
* Update, improve and convert debian/copyright to machine-readable format.
* Bump Standards-Version to 3.9.6.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* test_libFLAC++ - Unit tester for libFLAC++
2
 
 * Copyright (C) 2002-2009  Josh Coalson
3
 
 * Copyright (C) 2011-2013  Xiph.Org Foundation
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU General Public License
7
 
 * as published by the Free Software Foundation; either version 2
8
 
 * of the License, or (at your option) any later version.
9
 
 *
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU General Public License along
16
 
 * with this program; if not, write to the Free Software Foundation, Inc.,
17
 
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
 
 */
19
 
 
20
 
#include "decoders.h"
21
 
#include "encoders.h"
22
 
#include "metadata.h"
23
 
 
24
 
int main(int argc, char *argv[])
25
 
{
26
 
        (void)argc, (void)argv;
27
 
 
28
 
        if(!test_encoders())
29
 
                return 1;
30
 
 
31
 
        if(!test_decoders())
32
 
                return 1;
33
 
 
34
 
        if(!test_metadata())
35
 
                return 1;
36
 
 
37
 
        return 0;
38
 
}