ParsePairTest.sh
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #!/bin/bash
  2. #
  3. MACHINE=$(uname -m)
  4. if [ -x ./bin.debug.${MACHINE} ]
  5. then
  6.     echo -e " ./bin.debug.${MACHINE}/ParsePairTest"
  7.     ./bin.debug.${MACHINE}/ParsePairTest
  8.     if [ $? -eq 0 ]; then
  9.         exit 1;
  10.     fi
  11.     
  12.     echo "
  13. <configuration>
  14.     <a/>
  15.     <b> 
  16.         This is b
  17.     </b>
  18.     <c>   </c>
  19.     <foo>        bar              </foo>
  20. </configuration>
  21. " > test.xml    
  22.      
  23.     cat test.xml
  24.      
  25.     echo -e " ./bin.debug.${MACHINE}/ParsePairTest test.xml"
  26.     ./bin.debug.${MACHINE}/ParsePairTest test.xml
  27.     rm test.xml
  28.     
  29.     if [ ! $? -eq 0 ]; then
  30.         exit 1;
  31.     fi
  32.     
  33.     echo "
  34. a
  35. b: This is b # Yes
  36. c
  37. foo  = bar
  38. A B C D
  39. " > test.txt
  40.     cat test.txt
  41.     
  42.     echo -e " ./bin.debug.${MACHINE}/ParsePairTest test.txt txt"
  43.     ./bin.debug.${MACHINE}/ParsePairTest test.txt txt
  44.     
  45.     rm test.txt
  46.     echo "---------------------------"
  47.     echo -e " ./bin.debug.${MACHINE}/ParsePairStringTest"
  48.     ./bin.debug.${MACHINE}/ParsePairStringTest
  49. fi