search for: test_flac

Displaying 20 results from an estimated 32 matches for "test_flac".

2014 Jul 09
2
[PATCH] test_flac.sh fix
Not only test_replaygain.sh (commit 1988855), but also test_flac.sh requires additional --force-raw-format option. -------------- next part -------------- A non-text attachment was scrubbed... Name: test_flac.patch Type: application/octet-stream Size: 2176 bytes Desc: not available Url : http://lists.xiph.org/pipermail/flac-dev/attachments/20140709/1ab42e3d/atta...
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 ++++++------ test/test_streams.sh | 4 ++-- 8 files changed, 26 insertions(+), 26 dele...
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 changed, 17 insertions(+), 0 deletions(-) diff --git a/test/test_b...
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 +++ b/test/test_flac.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # FLAC - Free Lossless Audi...
2013 May 26
2
Anything else for Flac 1.3.0?
...t; Windows, because using skip with only minutes and seconds (and no > fraction) works. Your locale probably has the comma as the decimal mark, so "--skip=00:01,11" would work. (Whether it is a good idea to honour locale settings in command-line arguments is a different matter.) test_flac.sh is aware of this: > # we use '.' as decimal separator in --skip/--until tests > export LANG=C LC_ALL=C So it seems that this locale setting is ignored on Windows. Ulrich
2014 Nov 25
0
flac-1.3.1pre1
...with '#!/bin/sh -e' and removing a few pieces of bash-specific syntax apparently runs the tests just fine. (That's not to say they pass.) I believe it also makes the test scripts more portable; diff below. The following tests go fine: test_libFLAC.sh test_libFLAC++.sh test_grabbag.sh test_flac.sh The metaflac test fails like this: Generating stream... flac 1.3.0, Copyright (C) 2000-2009, 2011-2013 Josh Coalson & Xiph.Org Foundation flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions. Type `flac' for...
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
2007 Aug 31
2
1.2.0: Test suite failures on LP64 archs?
Running the basic (--disable-thorough-tests) test suite, I get these failures round-trip test (rt-1-24-111.raw) encode... Segmentation fault (core dumped) ERROR FAIL: ./test_flac.sh fsd24-01 (--channels=1 --bps=24 -0 -l 16 --lax -m -e -p): encode...ERROR during encode of fsd24-01 FAIL: ./test_streams.sh on alpha and amd64. By contrast, i386 is fine. (All OpenBSD/4.2.) Could be a generic LP64 bug... -- Christian "naddy" Weisgerber nad...
2007 Sep 14
1
upcoming release, need help
...gs look fine, maybe some other test failed like the unit tests which are unfortunately not logged. could you try running them individually and see if there's a problem (they're relatively quick) $ cd test $ ./test_libFLAC.sh release && ./test_libFLAC++.sh release && ./test_flac.sh release && ./test_metaflac.sh release && ./test_seeking.sh release that will stop on the first error --- Avuton Olrich <avuton@gmail.com> wrote: > On 9/14/07, Josh Coalson <xflac@yahoo.com> wrote: > > checked in to CVS is what will be very close to the...
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:
2006 Nov 07
2
build issues
BTW, I ran into a few issues building with recent cvs. You might want to consider copying autogen.sh from one of the other xiph codec projects and setting a proper minimum version in AUTOMAKE_OPTIONS. The current one just breaks if it the default automake isn't the appropriate version, but debian based systems (at least) often have several versions installed in parallel. We have code to
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/
2013 Apr 09
3
Check level not passed to tests
...T_LEVEL is unset in the test scripts. As I said before, I'm not sure how to fix this. This is probably also the case for $FLAC__TEST_WITH_VALGRIND While going trough test/Makefile, I found this # This is the full test suite, but only works correctly in-tree. # In particular test_grabbag.sh, test_flac.sh and test_metaflac.sh will not # run correctly out-of-tree. fullcheck: $(check_SCRIPTS) ./test_libFLAC.sh ./test_libFLAC++.sh ./test_grabbag.sh [...]
2006 Nov 09
3
Re: build issues
On Wed, Nov 08, 2006 at 05:28:39PM -0800, Josh Coalson wrote: > which tests? for a little while there, test_seeking would fail > because of an intermittent bug in the seek routine which has been > fixed. test_flac and test_metaflac are currently failing because > of mismatches in the vendor string that I mentioned before. Ok, I updated to CVS as of this morning, and now only two of the tests failed. I didn't really investigate, but attaching build warning and 'make check' output logs for th...
2013 Mar 19
1
flac 1.3.0pre2 pre-release
...austive-tests --disable-valgrind-testing --disable-static > --disable-dependency-tracking --disable-debug --enable-sse --disable-3dnow > --disable-altivec --disable-doxygen-docs --disable-xmms-plugin > --enable-cpplibs --enable-ogg > > *make fullcheck:* > This test fails with 'test_flac.sh': > > Testing --keep-foreign-metadata... > round-trip test (wacky1.wav) encode... NOTE: --keep-foreign-metadata is a > new feature; make sure to test the output file before deleting the original. > decode... NOTE: --keep-foreign-metadata is a new feature; make sure to > tes...
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
2013 May 26
2
Anything else for Flac 1.3.0?
...nning test again) > > All tests passed, except the thing mentioned below. When disabling the > checks for --skip and --until, it passes. > > I've found one non-critical bug on MSVC and minGW that I didn't get > earlier because I didn't run fullcheck on Windows yet. In test_flac.sh, > I got this > >> round-trip test (rt-8-8-111.wav->oggflac->oggflac->wav) encode... >> re-encode... decode... compare... OK >> round-trip test (rt-8-8-4777.wav->oggflac->oggflac->wav) encode... >> re-encode... decode... compare... OK >> test...
2014 Nov 26
1
flac-1.3.1pre1
....sh PATH=`pwd`/../src/flac:$PATH @@ -39,7 +39,7 @@ for k in 0 1 2 3 4 5 6 7 8 ; do echo "Error : Compression ${last_k} size $last_size >= compression $k size $size." exit 1 fi - let last_size=${size}+10 + last_size=$((${size}+10)) last_k=${k} rm -f ${fname} done --- test_flac.sh.orig Wed Nov 26 21:53:30 2014 +++ test_flac.sh Wed Nov 26 21:53:39 2014 @@ -1,4 +1,4 @@ -#!/bin/bash -e +#!/bin/sh -e # FLAC - Free Lossless Audio Codec # Copyright (C) 2001-2009 Josh Coalson @@ -18,7 +18,7 @@ # restrictive of those mentioned above. See the file COPYING.Xiph in this #...
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
2013 Mar 14
4
flac 1.3.0pre2 pre-release
Janne Hyv?rinen wrote: > > On 14.3.2013 9:37, Erik de Castro Lopo wrote: > > Janne Hyv?rinen wrote: > > > >> The patch was made from the published pre2 version. It missed the MinGW > >> changes that were applied to git version. > > Patch applied. Thanks. > > > > Erik > > Unfortunately with this commit the LRN's patch from commit