Displaying 20 results from an estimated 800 matches similar to: "Check level not passed to tests"
2013 May 26
2
Anything else for Flac 1.3.0?
I have also run a `make fullcheck` on Mac OS X 10.8. Only one test fails:
FLAC__TEST_LEVEL=1 FLAC__TEST_WITH_VALGRIND=no ./test_grabbag.sh
./test_grabbag.sh: line 39: 1N: value too great for base (error token is "1N")
make[1]: *** [fullcheck] Error 1
make: *** [fullcheck] Error 2
The cause is that in test_grabbag.sh, line 39, it uses `date +%N` to
get nanoseconds, which is unsupported
2014 Nov 25
0
flac-1.3.1pre1
On Nov 25 00:43:22, mle+la at mega-nerd.com wrote:
> http://downloads.xiph.org/releases/flac/beta/
> Please test.
Running 'make fullcheck' fails for me like this:
$ pwd
/home/hans/src/flac-1.3.1pre1/test
$ make fullcheck
FLAC__TEST_LEVEL=1 FLAC__TEST_WITH_VALGRIND=no ./test_libFLAC.sh
/bin/sh: ./test_libFLAC.sh: No such file or directory
*** Error 1 in
2013 Apr 21
0
[PATCH] Reduce valgrind num-callers to 50
My Valgrind doesn't run, saying it doesn't support showing more
than 50 entries of a stack trace
---
test/test_bins.sh | 4 ++--
test/test_flac.sh | 8 ++++----
test/test_grabbag.sh | 8 ++++----
test/test_libFLAC++.sh | 2 +-
test/test_libFLAC.sh | 2 +-
test/test_metaflac.sh | 12 ++++++------
test/test_seeking.sh | 12 ++++++------
2014 Nov 25
19
flac-1.3.1pre1
Hi all,
As people may have seen there's a pre-release here:
http://downloads.xiph.org/releases/flac/beta/
Specifically:
flac-1.3.1pre1.tar.xz : The source code
flac-1.3.1pre1-win.zip : Windows 32 and 64 bit binaries
Please test.
I'm particularly interested in hearing about the windows binaries
which were cross compiled from Linux to Windows. Unfortunately
there is a bug
2013 Apr 21
0
[PATCH] Re: Check level not passed to tests
This patch fixes the issue mentioned below.
On 09-04-13 21:18, Martijn van Beurden wrote:
> Hi all,
>
> For testing a few mingw-builds I tried to use ./configure
> --disable-thorough-testing (because testing in a virtual machine
> through mingw isn't really fast) but it turned out this setting
> doesn't do anything.
>
> It turns out these configuration options
2013 May 26
5
Anything else for Flac 1.3.0?
Hi all,
In my latest commit I have updated all version strings and copyright
dates.
I am now going to do a little testing (and encourage anyone else to do
the same) and hopefully release in the next day or so.
Cheers,
Erik
--
----------------------------------------------------------------------
Erik de Castro Lopo
http://www.mega-nerd.com/
2012 Apr 18
3
[PATCH 3/3] export MALLOC_PERTURB_ and MALLOC_CHECK_ in test suite
That enables an special implementation that checks
for common memory errors and will save us from a lot pain.
---
test/test_bins.sh | 2 ++
test/test_flac.sh | 2 ++
test/test_grabbag.sh | 2 ++
test/test_libFLAC++.sh | 2 ++
test/test_libFLAC.sh | 3 +++
test/test_metaflac.sh | 2 ++
test/test_seeking.sh | 2 ++
test/test_streams.sh | 2 ++
8 files
2014 Apr 30
2
make fullcheck fails: strtod/atof and locale
make fullcheck fails on my computer: flac cannot recognize --skip option
that contains decimal point, e.g. "--skip=1.234".
System locale uses comma as a separator, so strtod/atof expect comma, not point,
and "make fullcheck" fails.
Here's what I can see in FLAC source code:
atof() function found in:
file: src/share/grabbag/seektable.c
function:
2014 Nov 26
1
flac-1.3.1pre1
On Nov 26 01:25:25, hans at stare.cz wrote:
> On Nov 25 23:56:05, mvanb1 at gmail.com wrote:
> > Op 25-11-14 om 23:39 schreef Jan Stary:
> > > Is there a reason the test scripts are calling bash?
> >
> > The change from sh to bash was made a little more than a year
> > ago. The mailing list thread accompanying this change can be
> > found here:
>
2014 Nov 25
2
flac-1.3.1pre1
Op 25-11-14 om 23:39 schreef Jan Stary:
> Is there a reason the test scripts are calling bash?
The change from sh to bash was made a little more than a year
ago. The mailing list thread accompanying this change can be
found here:
http://lists.xiph.org/pipermail/flac-dev/2013-September/004374.html
2006 Sep 28
1
autotools buglet
I had trouble building because configure.in did not include the
test_grabbag/picture/Makefile entry for Makefile generation.
This patch rectifies that situation. This is with flac cvs as of this
morning.
E
Signed-off-by: Erik Hovland <erik@hovland.org>
--
Erik Hovland
mail: erik AT hovland DOT org
web: http://hovland.org/
PGP/GPG public key available on request
-------------- next part
2013 Mar 23
2
[flac 1.3.0pre2 pre-release] Updates to test suite
Jaren Stangret wrote:
> Attached is a patch for 'test_grabbag.sh'. Continuing in the same vein as
> the other patches, this patch consists of minor reworks of
> functions/commands as well as heavily commenting what's going on.
>
> More than halfway there!
Jaren,
Any sign of the patches for the rest of these tests? I have some other
changes to the tests that I'd
2017 Jan 06
8
[PATCH 0/5] Allow multiple targets to be disabled
Hi,
This patchet allows a few targets to be disabled when unrequired.
The rational is coming from VLC's contrib buildsystem, so far we use make -C to select only some subparts of the available targets.
It would be easier and cleaner to use autoconf to do so IMHO.
There's an additional patch which fixes the build when building for WinRT/UWP platform, upstreamed from VLC.
We have a couple
2013 Mar 20
2
[PATCH] Change test scripts shell to bash, to avoid lack of arithmetic support in dash, which is sh on Ubuntu 10.04
The subject line mostly says it all, but for reference, having #!/bin/sh causes the following error:
arithmetic expression: expecting primary: " % 255 + 1"
---
test/test_flac.sh | 2 +-
test/test_grabbag.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/test_flac.sh b/test/test_flac.sh
index 10981c0..257c5ea 100755
--- a/test/test_flac.sh
+++
2019 Jul 19
4
Prelease now available
Erik de Castro Lopo wrote:
> Hopefull the final release candidate:
>
> http://mega-nerd.com/tmp/flac-1.3.3rc3.tar.xz
> http://mega-nerd.com/tmp/flac-1.3.3rc3.tar.xz.asc
I am assuming everyone was happy with that and that I can release
a new version.
Cheers,
Erik
--
----------------------------------------------------------------------
Erik de Castro Lopo
2012 Apr 18
1
[PATCH 3/3] export MALLOC_PERTURB_ and MALLOC_CHECK_ in test suite
On 18/04/12 09:08, Erik de Castro Lopo wrote:
> Cristian Rodr?guez wrote:
>
>> That enables an special implementation that checks
>> for common memory errors and will save us from a lot pain.
>> ---
>> test/test_bins.sh | 2 ++
>> test/test_flac.sh | 2 ++
>> test/test_grabbag.sh | 2 ++
>> test/test_libFLAC++.sh | 2 ++
2017 Jan 15
0
[PATCH 2/2] Only compile and run tests when running 'make check'
---
src/test_grabbag/cuesheet/Makefile.am | 2 +-
src/test_grabbag/picture/Makefile.am | 2 +-
src/test_libFLAC++/Makefile.am | 2 +-
src/test_libFLAC/Makefile.am | 2 +-
src/test_seeking/Makefile.am | 2 +-
src/test_streams/Makefile.am | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/test_grabbag/cuesheet/Makefile.am
2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
Hello,
This is a patch to allow building of the project using MSYS, MinGW, and
MinGW-w64 with the following invocation:
make -f Makefile.lite libFLAC libFLAC++ flac metaflac test_libs_common
test_libFLAC test_libFLAC++ test_grabbag test_seeking test_streams utils
examples
This patch addresses eight points:
1. `uname -p` in MSYS returns "unknown" so we must use `gcc
-dumpmachine`
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
Hello,
This is a patch to allow building of the project using MSYS, MinGW, and
MinGW-w64 with the following invocation:
make -f Makefile.lite libFLAC libFLAC++ flac metaflac test_libs_common
test_libFLAC test_libFLAC++ test_grabbag test_seeking test_streams utils
examples
This patch addresses eight points:
1. `uname -p` in MSYS returns "unknown" so we must use `gcc
-dumpmachine`
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
The following patch changes export.h so that the dllimport/dllexport
attributes work with mingw/mingw-w64 and others:
- changes _declspec keyword to __declspec: the former may not be
defined by some toolchains.
- changes the _MSC_VER condition to universally _WIN32: MSVC, as well
as GCC supports this.
Attached patch: declspec.diff
Regards.
--
O.S.
-------------- next part --------------