test_libOggFLAC.sh
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:2k
源码类别:

Windows CE

开发平台:

C/C++

  1. #!/bin/sh
  2. #  FLAC - Free Lossless Audio Codec
  3. #  Copyright (C) 2002,2003,2004,2005  Josh Coalson
  4. #
  5. #  This file is part the FLAC project.  FLAC is comprised of several
  6. #  components distributed under difference licenses.  The codec libraries
  7. #  are distributed under Xiph.Org's BSD-like license (see the file
  8. #  COPYING.Xiph in this distribution).  All other programs, libraries, and
  9. #  plugins are distributed under the GPL (see COPYING.GPL).  The documentation
  10. #  is distributed under the Gnu FDL (see COPYING.FDL).  Each file in the
  11. #  FLAC distribution contains at the top the terms under which it may be
  12. #  distributed.
  13. #
  14. #  Since this particular file is relevant to all components of FLAC,
  15. #  it may be distributed under the Xiph.Org license, which is the least
  16. #  restrictive of those mentioned above.  See the file COPYING.Xiph in this
  17. #  distribution.
  18. die ()
  19. {
  20. echo $* 1>&2
  21. exit 1
  22. }
  23. if [ x = x"$1" ] ; then 
  24. BUILD=debug
  25. else
  26. BUILD="$1"
  27. fi
  28. LD_LIBRARY_PATH=../src/libFLAC/.libs:$LD_LIBRARY_PATH
  29. LD_LIBRARY_PATH=../src/libOggFLAC/.libs:$LD_LIBRARY_PATH
  30. LD_LIBRARY_PATH=../src/share/grabbag/.libs:$LD_LIBRARY_PATH
  31. LD_LIBRARY_PATH=../src/share/replaygain_analysis/.libs:$LD_LIBRARY_PATH
  32. LD_LIBRARY_PATH=../obj/$BUILD/lib:$LD_LIBRARY_PATH
  33. export LD_LIBRARY_PATH
  34. PATH=../src/test_libOggFLAC:$PATH
  35. PATH=../obj/$BUILD/bin:$PATH
  36. run_test_libOggFLAC ()
  37. {
  38. if [ x"$FLAC__VALGRIND" = xyes ] ; then
  39. valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 test_libOggFLAC $* 4>>test_libOggFLAC.valgrind.log
  40. else
  41. test_libOggFLAC $*
  42. fi
  43. }
  44. run_test_libOggFLAC || die "ERROR during test_libOggFLAC"