You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by bl...@apache.org on 2006/03/29 12:01:27 UTC

svn commit: r389738 - /xml/security/trunk/c/src/basicTests.pl

Author: blautenb
Date: Wed Mar 29 02:01:25 2006
New Revision: 389738

URL: http://svn.apache.org/viewcvs?rev=389738&view=rev
Log:
Add calls to VC8 built executables under windows

Modified:
    xml/security/trunk/c/src/basicTests.pl

Modified: xml/security/trunk/c/src/basicTests.pl
URL: http://svn.apache.org/viewcvs/xml/security/trunk/c/src/basicTests.pl?rev=389738&r1=389737&r2=389738&view=diff
==============================================================================
--- xml/security/trunk/c/src/basicTests.pl (original)
+++ xml/security/trunk/c/src/basicTests.pl Wed Mar 29 02:01:25 2006
@@ -54,6 +54,9 @@
 my $checksig;
 my $cipher;
 
+my $checksig_vc8 = "../Build/Win32/VC8/Debug/checksig.exe";
+my $cipher_vc8 = "../Build/Win32/VC8/Debug/cipher.exe";
+
 my $checksig_vc7 = "../Build/Win32/VC7/Debug/checksig.exe";
 my $cipher_vc7 = "../Build/Win32/VC7/Debug/cipher.exe";
 
@@ -63,6 +66,9 @@
 my $checksig_vc7release = "../Build/Win32/VC7/Release/checksig.exe";
 my $cipher_vc7release = "../Build/Win32/VC7/Release/cipher.exe";
 
+my $checksig_vc8release = "../Build/Win32/VC8/Release/checksig.exe";
+my $cipher_vc8release = "../Build/Win32/VC8/Release/cipher.exe";
+
 if ($^O =~ m/Win/) {
   $checksig = "../Build/Win32/VC6/Debug/checksig.exe";
   $cipher = "../Build/Win32/VC6/Debug/cipher.exe";
@@ -258,7 +264,7 @@
 
 sub print_args {
 
-  print STDERR "\nUsage: basicTests.pl [--noxalan] [--nopothole] [--noaes] [--vc7] [--vc7release] [--vc6release]\n\n";
+  print STDERR "\nUsage: basicTests.pl [--noxalan] [--nopothole] [--noaes] [--vc8] [--vc8release] [--vc7] [--vc7release] [--vc6release]\n\n";
   exit(1);
 
 }
@@ -271,6 +277,8 @@
     if (/^--noxalan$/ || /^-x$/) {$have_xalan = 0; last SWITCH;}
     if (/^--nopothole$/ || /^-p$/) {$have_pothole = 0; last SWITCH;}
     if (/^--noaes$/ || /^-a$/) {$have_aes = 0; last SWITCH;}
+    if (/^--vc8$/) {$checksig = $checksig_vc8 ; $cipher = $cipher_vc8; last SWITCH;}
+    if (/^--vc8release$/) {$checksig = $checksig_vc8release ; $cipher = $cipher_vc8release; last SWITCH;}
     if (/^--vc7$/) {$checksig = $checksig_vc7 ; $cipher = $cipher_vc7; last SWITCH;}
     if (/^--vc7release$/) {$checksig = $checksig_vc7release ; $cipher = $cipher_vc7release; last SWITCH;}
     if (/^--vc6release$/) {$checksig = $checksig_release ; $cipher = $cipher_release; last SWITCH;}