summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Version 1.3.31.3.3Erik de Castro Lopo2019-08-041-1/+1
|
* test: Ignore varying length in metadataErik de Castro Lopo2019-07-1580-540/+547
| | | | | The metadata test checked for specific lengths which change from 5 bytes for something like "1.3.2" to 9 bytes for something like "1.3.3pre1".
* Fixed #107: CMake error without enabling BUILD_CXXLIBSVitaliy Kirsanov2019-05-311-3/+4
|
* Added ECHO_C to CMake testsVitaliy Kirsanov2019-05-041-1/+4
|
* /test/*.sh enabled for CTest in UNIXVitaliy Kirsanov2019-05-041-0/+45
|
* Add output-prefix testsorbea2018-06-111-0/+37
| | | | Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Fix miscellaneous typos.luz.paz2018-05-242-2/+2
| | | | Found via `codespell -q 3`
* flac: Use WAVEFORMATEXTENSIBLE when bps != (8|16)Erik de Castro Lopo2017-05-271-1/+1
| | | | | | | | When decoding to WAV, the legacy wFormatTag of WAVE_FORMAT_PCM should only be used if the bitwidth is 8 or 16. For all other bitwidths, use WAVEFORMATEXTENSIBLE. Two of the test programs/scripts also needed updating.
* Version 1.3.21.3.2Erik de Castro Lopo2017-01-011-1/+1
|
* test/test_metaflac.sh: Comment onlyErik de Castro Lopo2017-01-011-0/+1
|
* Makefile.lite: Fix running of testsErik de Castro Lopo2016-12-214-12/+8
| | | | | * Generate `test/common.sh` from `test/common.sh.in`. * Move `is_win` setting to `test_common.sh`.
* Another bulk update of copyright datesErik de Castro Lopo2016-12-051-1/+1
|
* Bulk update copyright datesErik de Castro Lopo2016-12-0515-15/+15
|
* test/Makefile.lite: Remove call to old scriptErik de Castro Lopo2016-05-131-1/+0
|
* Fix 'make distcheck' targetErik de Castro Lopo2016-04-271-1/+2
| | | | Last commit added a new file which was not added to `EXTRA_DIST`.
* cuesheet.c: Allow quotes around ISRC fieldErik de Castro Lopo2016-04-262-0/+7
| | | | | | | With this change, flac now accepts cuesheets where the ISRC field is enclosed in double quotes. Added a test for this as well. Closes: https://sourceforge.net/p/flac/bugs/436/
* test/: Remove two redundant scriptsErik de Castro Lopo2016-02-113-111/+0
| | | | | | | * test_bin.sh looks like it was a personal use script for the original developer Josh Coalson and referenced directories outside the actual repository. * test_wrapper.sh was trivial and un-used.
* test/ : Use more portable echo constructsErik de Castro Lopo2015-10-047-106/+106
| | | | | | Fix suggested by Daniel Macks. Closes: https://sourceforge.net/p/flac/bugs/433/
* test_flac.sh: Test unsigned as well as signedErik de Castro Lopo2015-09-071-2/+4
|
* test_streams.sh: Improve error messageErik de Castro Lopo2015-09-071-1/+1
|
* metaflac: add --scan-replay-gain optionBen Boeckel2015-08-142-0/+5
| | | | Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* test/test_flac.sh : Make it work for 'make distcheck'.Erik de Castro Lopo2015-02-241-0/+2
| | | | | | An output file was being set to read only and hence could not be overwritten by a later test. Not sure why this only affected the 'make distcheck' target.
* Fix cursheet tests for 'make distcheck'.Erik de Castro Lopo2015-02-241-2/+3
|
* test/test_metaflac.sh : Out-of-tree build fixes.Erik de Castro Lopo2015-02-151-17/+17
|
* test/test_flac.sh : Out-of-tree build fixes.Erik de Castro Lopo2015-02-151-7/+7
|
* Update grabbag tests to work out-of-tree.Erik de Castro Lopo2015-02-151-9/+9
|
* test/test_flac.sh : Silence increased encoding size warnings.Erik de Castro Lopo2015-02-151-38/+38
| | | | | These warning are supposed to occur for files with noise-like characteristics and some of the tests use files containing noise.
* test/Makefile.am : Collapse 'fullcheck' into 'check' target.Erik de Castro Lopo2015-02-151-19/+4
|
* test/common.sh.in : Add top_builddir and top_srcdir variables.Erik de Castro Lopo2015-02-151-0/+5
| | | | | These are needed for running some of the tests when building out of tree.
* replaygain test: Use C code to generate test files.Erik de Castro Lopo2015-02-151-51/+7
|
* test/test_replaygain.sh : Minor cleanup.Erik de Castro Lopo2015-02-131-3/+4
| | | | | | * Pipe un-needed strerr output to /dev/null. * Pass --silent and --no-seektable to the flac executable. * When generating tones, use --output-name=....
* Grammatical error in make file comment fixedKarthik Periagaram2014-12-141-1/+1
| | | | Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Version 1.3.1 final.1.3.1Erik de Castro Lopo2014-11-271-1/+1
|
* tests/*.sh : Switch back to /bin/sh.Erik de Castro Lopo2014-11-2712-26/+27
| | | | | | | | | | | Jan Stary reported that on OpenBSD bash isn't located in /bin/ which means that the test fail. He also noted that there didn't seem to be anything bash specific in the tests. This patch takes some suggestions from Jan, plus a few fixes tested on Debian using the bin/sh provided by bash and dash. Suggested-by: Jan Stary <hans@stare.cz>
* test/test_compression.sh : Fix for OSX.Erik de Castro Lopo2014-11-261-2/+4
| | | | | | | | | | On Mac OSX, the 'wc -c' command returns a number with leading whitespace which then results in a syntax error when the shell parser expects a number when it really has a string containing a number. The easy fix is to use string interpolation. Closes: https://sourceforge.net/p/flac/bugs/420/ Reported-by: Mark Harris <mark.hsj@gmail.com>
* libFLAC/format.c : Fix the date in FLAC__VENDOR_STRING.Erik de Castro Lopo2014-11-261-1/+1
|
* More date fixes.Erik de Castro Lopo2014-11-251-1/+1
|
* Set version to 1.3.1pre1.1.3.1pre1Erik de Castro Lopo2014-11-251-1/+1
|
* Update copyright years to include 2014.Erik de Castro Lopo2014-11-2516-16/+16
|
* Make test_compression a little more forgivingMartijn van Beurden2014-11-111-1/+1
| | | | | | | | | | | | | | The retune of compression levels makes this test fail. This is due to a few approximations used in the encoder that determine which LP coefficient should result in the smallest file. Differences are usually very small, but in my case this resulted in compression level 6 giving a 3 byte bigger file. This patch lets the compression test pass even if the a compression level results in a file that is up to 10 byte larger than the previous level Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* test/test_flac.sh : Add --force-raw-format as needed.Erik de Castro Lopo2014-07-131-6/+6
| | | | Patch-from: lvqcl <lvqcl.mail@gmail.com>
* test_replaygain.sh : Add --force-raw-format option.Erik de Castro Lopo2014-07-081-1/+1
| | | | | | This test was failing due to the lack of this option. Patch-from: lvqcl <lvqcl.mail@gmail.com>
* test/test_replaygain.sh : Update tests after work aroind for GCC bug.Erik de Castro Lopo2014-06-281-5/+5
| | | | Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Remove un-needed code.Erik de Castro Lopo2014-06-281-1/+0
| | | | Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Repairs test_grabbag.shMartijn van Beurden2014-03-141-2/+1
| | | | | | | The change from /bin/sh to /bin/bash -e (commit 1d3d50) broke the cuesheet tests. This should fix it Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Factor out common test functionality to test/common.sh.in.Erik de Castro Lopo2013-09-1711-253/+126
|
* Switch test scripts to bash.Erik de Castro Lopo2013-09-1711-17/+18
|
* test/test_seeking.sh : Fix detection of Ogg support.Erik de Castro Lopo2013-09-151-5/+3
|
* test/test_replaygain.sh : Prefer mawk over gawk.Erik de Castro Lopo2013-08-021-1/+10
| | | | | | The AWK script used to generate tones for this test fails with gawk version 4.0.1, but used to work for earlier versions. Use mawk instead if it exists.
* Split regain play tests into separate script.Erik de Castro Lopo2013-08-023-98/+211
|