run-tests
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #!/usr/bin/perl
  2. # ====================================================================
  3. # The Vovida Software License, Version 1.0 
  4. # Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions
  7. # are met:
  8. # 1. Redistributions of source code must retain the above copyright
  9. #    notice, this list of conditions and the following disclaimer.
  10. # 2. Redistributions in binary form must reproduce the above copyright
  11. #    notice, this list of conditions and the following disclaimer in
  12. #    the documentation and/or other materials provided with the
  13. #    distribution.
  14. # 3. The names "VOCAL", "Vovida Open Communication Application Library",
  15. #    and "Vovida Open Communication Application Library (VOCAL)" must
  16. #    not be used to endorse or promote products derived from this
  17. #    software without prior written permission. For written
  18. #    permission, please contact vocal@vovida.org.
  19. # 4. Products derived from this software may not be called "VOCAL", nor
  20. #    may "VOCAL" appear in their name, without prior written
  21. #    permission of Vovida Networks, Inc.
  22. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  23. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  24. # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  25. # NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  26. # NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  27. # IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  28. # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  29. # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  30. # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  31. # OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  32. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  33. # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  34. # DAMAGE.
  35. # ====================================================================
  36. # This software consists of voluntary contributions made by Vovida
  37. # Networks, Inc. and many individuals on behalf of Vovida Networks,
  38. # Inc.  For more information on Vovida Networks, Inc., please see
  39. # <http://www.vovida.org/>.
  40. require "getopts.pl";
  41. &Getopts("c");
  42. # usage:
  43. if($#ARGV != 4) {
  44.     print "usage: $0 [-c] <root-dir> <current-dir> <bin-prefix> <test-program-file> <log-file>n";
  45.     exit -1;
  46. }
  47. chomp($root_dir = `cd $ARGV[0]; pwd`);
  48. chomp($current_dir = `cd $ARGV[1]; pwd`);
  49. $bin_prefix = $ARGV[2];
  50. $test_file = $ARGV[3];
  51. $log_file = $ARGV[4];
  52. #get test name by taking out everything not in the root directory name
  53. $test_name = $current_dir;
  54. $test_name =~ s/$root_dir//;
  55. $test_name =~ s/^///;
  56. print "testing $test_namen";
  57. # if the path to $0 is not implicitly in the exec path, add it to the path
  58. $exec_path = $0;
  59. if($exec_path =~ s//[^/]*$//) {
  60. $ENV{PATH} = "$exec_path:$ENV{PATH}:.";
  61. }
  62. #get rid of the test.log file
  63. open(LOCALLOG, ">>$bin_prefix/testresults.log" ) || die "can't open for writing";
  64. open(TESTLOG, ">>$bin_prefix/testoutput.log" ) || die "can't open for writing";
  65. $start_time = &get_time();
  66. print TESTLOG ">>>> START $test_name ( $start_time ) ( $bin_prefix )n";
  67. open(F, $test_file) || die "can't open $test_file for reading";
  68. open(LOGFILE, ">>$log_file") || die "can't open $log_file for writing";
  69. print LOGFILE ">>>> START $test_name ( $start_time ) ( $bin_prefix )n";
  70. print LOCALLOG ">>>> START $test_name ( $start_time ) ( $bin_prefix )n";
  71. while(<F>) {
  72.     # run the command line and output it
  73.     chomp;
  74.     if(!/^#/) {
  75. ($exit_code, $signal, $core, $cmd) = split(/s+/, $_, 4);
  76.         if(!$opt_c || ($cmd =~ /^test/)) {
  77. &run_command($exit_code, $signal, $core, $cmd);
  78. }
  79.     }
  80. }
  81. print LOGFILE "<<<< END $test_name ( $start_time ) ( $bin_prefix )n";
  82. print LOCALLOG "<<<< END $test_name ( $start_time ) ( $bin_prefix )n";
  83. print TESTLOG "<<<< END $test_name ( $start_time ) ( $bin_prefix )n";
  84. sub run_command {
  85.     my($has_exit_code, $has_signal, $has_core, $cmd) = @_;
  86.     my($failed) = 0;
  87.     my($original_cmd);
  88.     $original_cmd = $cmd;
  89. #    $cmd =~ s/^(w)/./1/;  # if this is in pwd, append the ./ to make sure it works
  90.     # kill trailing whitespace
  91.     $original_cmd =~ s/s+$//g;
  92.     print "running $cmdn";
  93.     open(TEST, "cd $bin_prefix ; $cmd 2>&1 |") || die "can't run program $cmd";
  94.     print TESTLOG "---- running $cmdn";
  95.     while(<TEST>) {
  96. # get the output lines, which need to be in legal format
  97. if(/^PASSED/ || /^FAILED/) {
  98.     print LOGFILE $_;
  99.     print LOCALLOG $_;
  100.     print TESTLOG $_;
  101. } else {
  102.     print TESTLOG $_;
  103. }
  104.     }
  105.     close(TEST);
  106.     $exit_code = ($? >> 8);
  107.     $signal = ($? & 127);
  108.     $core_dumped = ($? & 128);
  109.     
  110.     if( ( $exit_code != $has_exit_code ) ) {
  111. $failed = 1;
  112.     }
  113.     
  114.     if( ( $signal && !$has_signal) ||
  115. ( !$signal && $has_signal)) {
  116. $failed = 1;
  117.     }
  118.     
  119.     if( ($core_dumped && !$has_core) ||
  120. (!$core_dumped && $has_core)) {
  121. $failed = 1;
  122.     }
  123.     
  124.     
  125.     if($failed) {
  126. print LOGFILE "FAILED: ${original_cmd}:: ";
  127. print LOCALLOG "FAILED: ${original_cmd}:: ";
  128. print TESTLOG "FAILED: ${original_cmd}:: ";
  129.     } else {
  130. print LOGFILE "PASSED: ${original_cmd}:: ";
  131. print LOCALLOG "PASSED: ${original_cmd}:: ";
  132. print TESTLOG "PASSED: ${original_cmd}:: ";
  133.     }
  134.     
  135.     print LOGFILE "(exit code: $exit_code, signal: $signal, core: $core_dumped)n";
  136.     print LOCALLOG "(exit code: $exit_code, signal: $signal, core: $core_dumped)n";
  137.     print TESTLOG "(exit code: $exit_code, signal: $signal, core: $core_dumped)n";
  138. }
  139. sub get_time {
  140.     my(@time_array);
  141.     my($time);
  142.     @time_array = localtime();
  143.     $time = sprintf("%4.4d-%2.2d-%2.2d-%2.2d-%2.2d-%2.2d", 
  144.     $time_array[5] + 1900, 
  145.     $time_array[4] + 1,
  146.     $time_array[3],
  147.     $time_array[2],
  148.     $time_array[1],
  149.     $time_array[0]);
  150.     return $time;
  151. }