checked in to CVS is what will be very close to the 1.2.1 release of flac scheduled for monday. if anyone can try building it and even better running the test suite, and reporting back any problems, that will help me get things in better shape. changelog: http://flac.cvs.sourceforge.net/*checkout*/flac/flac/doc/html/changelog.html?revision=HEAD TIA, Josh ____________________________________________________________________________________ Pinpoint customers who are looking for what you sell. http://searchmarketing.yahoo.com/
On 9/14/07, Josh Coalson <xflac@yahoo.com> wrote:> checked in to CVS is what will be very close to the 1.2.1 release > of flac scheduled for monday. if anyone can try building it and > even better running the test suite, and reporting back any problems, > that will help me get things in better shape. > > changelog: > http://flac.cvs.sourceforge.net/*checkout*/flac/flac/doc/html/changelog.html?revision=HEADI'd love to, I've got CVS checked out, how do I run this test suite? -- avuton -- Anyone who quotes me in their sig is an idiot. -- Rusty Russell.
On Fri, Sep 14, 2007 at 02:51:34PM -0700, Josh Coalson wrote:> checked in to CVS is what will be very close to the 1.2.1 release > of flac scheduled for monday. if anyone can try building it and > even better running the test suite, and reporting back any problems, > that will help me get things in better shape.config.rpath seems to be missing from the repository? -r
Josh Coalson wrote:> checked in to CVS is what will be very close to the 1.2.1 release > of flac scheduled for monday. if anyone can try building it and > even better running the test suite, and reporting back any problems, > that will help me get things in better shape.I'm currently running the tests on : Linux x86-64 Mac OSX PowerPC Do you plan to revert the changes you made to the function prototypes: FLAC__metadata_object_picture_set_mime_type FLAC__metadata_object_picture_set_description in include/FLAC/metadata.h? Like I stated in a previous email: http://lists.xiph.org/pipermail/flac-dev/2007-September/002351.html If you allow this changes to stay, it will mean that client code that compiled with no warnings with FLAC 1.2.0 will produce warnings with 1.2.1. Erik -- ----------------------------------------------------------------- Erik de Castro Lopo ----------------------------------------------------------------- Good advice for everyone : stay away from churches, mosques and synagogues.
Avuton Olrich wrote:> I'd love to, I've got CVS checked out, how do I run this test suite?./configure make make check Erik -- ----------------------------------------------------------------- Erik de Castro Lopo ----------------------------------------------------------------- "Properly read, the Bible is the most potent force for atheism ever conceived" -- Isaac Asimov
--- 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 1.2.1 release > > of flac scheduled for monday. if anyone can try building it and > > even better running the test suite, and reporting back any > problems, > > that will help me get things in better shape. > > > > changelog: > > >http://flac.cvs.sourceforge.net/*checkout*/flac/flac/doc/html/changelog.html?revision=HEAD> > I'd love to, I've got CVS checked out, how do I run this test suite?from the top level this should work: ./autogen.sh && make && make check the last part runs the tests. there are a lot of them so if it's really taking too long, you can rerun configure with --disable-thorough-tests and do 'make check' again. Josh ____________________________________________________________________________________ Looking for a deal? Find great prices on flights and hotels with Yahoo! FareChase. http://farechase.yahoo.com/
I've decided to put that one off till after the release. btw the cvs logs show that change happened between 1.1.2 and 1.1.3, or do you mean the warnings will come from the extra -W options you proposed? --- Erik de Castro Lopo <erikd-flac@mega-nerd.com> wrote:> Josh Coalson wrote: > > > checked in to CVS is what will be very close to the 1.2.1 release > > of flac scheduled for monday. if anyone can try building it and > > even better running the test suite, and reporting back any > problems, > > that will help me get things in better shape. > > I'm currently running the tests on : > > Linux x86-64 > Mac OSX PowerPC > > Do you plan to revert the changes you made to the function > prototypes: > > FLAC__metadata_object_picture_set_mime_type > FLAC__metadata_object_picture_set_description > > in include/FLAC/metadata.h? Like I stated in a previous email: > > http://lists.xiph.org/pipermail/flac-dev/2007-September/002351.html > > If you allow this changes to stay, it will mean that client code > that compiled with no warnings with FLAC 1.2.0 will produce > warnings with 1.2.1. > > > Erik____________________________________________________________________________________ Tonight's top picks. What will you watch tonight? Preview the hottest shows on Yahoo! TV. http://tv.yahoo.com/
--- Ralph Giles <giles@xiph.org> wrote:> On Fri, Sep 14, 2007 at 02:51:34PM -0700, Josh Coalson wrote: > > > checked in to CVS is what will be very close to the 1.2.1 release > > of flac scheduled for monday. if anyone can try building it and > > even better running the test suite, and reporting back any > problems, > > that will help me get things in better shape. > > config.rpath seems to be missing from the repository?yeah, I'm not sure how to handle that... I thought it normally comes from gettextize. flac uses iconv but not gettext and it's not set up to run gettextize, so I've been just copying my /usr/share/gettext/config.rpath into the releases. but since it felt like a hack I never checked it in. (I did add a note in autogen.sh about it.) Josh ____________________________________________________________________________________ Don't let your dream ride pass you by. Make it a reality with Yahoo! Autos. http://autos.yahoo.com/index.html
On 9/14/07, Josh Coalson <xflac@yahoo.com> wrote:> checked in to CVS is what will be very close to the 1.2.1 release > of flac scheduled for monday. if anyone can try building it and > even better running the test suite, and reporting back any problems, > that will help me get things in better shape.Checked 2 x86_64 boxes they worked fine, 1 x86 failed a test. Logs (streams, picture, cuesheet) for the failed box attached, please let me know if I can help in any way. -- avuton -- Anyone who quotes me in their sig is an idiot. -- Rusty Russell. -------------- next part -------------- A non-text attachment was scrubbed... Name: logs.tar.bz2 Type: application/x-bzip2 Size: 20568 bytes Desc: not available Url : http://lists.xiph.org/pipermail/flac-dev/attachments/20070914/2f668007/logs.tar-0001.bin
the those logs 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 1.2.1 release > > of flac scheduled for monday. if anyone can try building it and > > even better running the test suite, and reporting back any > problems, > > that will help me get things in better shape. > > Checked 2 x86_64 boxes they worked fine, 1 x86 failed a test. Logs > (streams, picture, cuesheet) for the failed box attached, please let > me know if I can help in any way. > -- > avuton > -- > Anyone who quotes me in their sig is an idiot. -- Rusty Russell. >____________________________________________________________________________________ Tonight's top picks. What will you watch tonight? Preview the hottest shows on Yahoo! TV. http://tv.yahoo.com/
Erik de Castro Lopo wrote:> I'm currently running the tests on : > > Linux x86-64 > Mac OSX PowerPCBoth passed. The 1.8GHz AMD64 took 50 minutes, the 500MHz G3 PowerPC took 461 minutes. Erik -- ----------------------------------------------------------------- Erik de Castro Lopo ----------------------------------------------------------------- Traditional capital was stuck in a company's bank account or investments. It could not walk away in disgust. Human capital has free will. It can walk out the door; traditional capital cannot.
On 9/14/2007 2:51 PM, Josh Coalson wrote:> checked in to CVS is what will be very close to the 1.2.1 release > of flac scheduled for monday. if anyone can try building it and > even better running the test suite, and reporting back any problems, > that will help me get things in better shape.Built fine and all tests passed under cygwin. -- David Rothenberger ---- daveroth@acm.org Too much is just enough. -- Mark Twain, on whiskey
No problems with libFLAC here on win32. However, I'm using my own vc7.1 project file and not the one included in the distro (since only v6 and v8 files are included, not vc7.1). libFLAC compiles w/o issues and a quick smoke test revealed no problems.> checked in to CVS is what will be very close to the 1.2.1 release > of flac scheduled for monday. if anyone can try building it and > even better running the test suite, and reporting back any problems, > that will help me get things in better shape. > > changelog: > http://flac.cvs.sourceforge.net/*checkout*/flac/flac/doc/html/changelog.html?revision=HEAD > > TIA, > Josh > >
thanks everyone for the feedback, the cvs tag is down and the release is almost ready. FLAC_RELEASE_1_2_1__2007_09_17 ____________________________________________________________________________________ Moody friends. Drama queens. Your life? Nope! - their life, your story. Play Sims Stories at Yahoo! Games. http://sims.yahoo.com/