Author: stas
Date: Mon Dec 20 06:46:07 2004
New Revision: 122852

URL: http://svn.apache.org/viewcvs?view=rev&rev=122852
Log:
skip the interactive test for mp2 core

Modified:
   
httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/modperl2_testitself_config.pm
   httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/t/interactive.t

Modified: 
httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/modperl2_testitself_config.pm
Url: 
http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/modperl2_testitself_config.pm?view=diff&rev=122852&p1=httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/modperl2_testitself_config.pm&r1=122851&p2=httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/modperl2_testitself_config.pm&r2=122852
==============================================================================
--- 
httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/modperl2_testitself_config.pm
  (original)
+++ 
httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/modperl2_testitself_config.pm
  Mon Dec 20 06:46:07 2004
@@ -1,7 +1,7 @@
 # This is a config file for testing modperl 2.0 core
 
 %Apache::TestItSelf::Config = (
-    repos_type    => 'mp2',
+    repos_type    => 'mp2_core',
     perl_exec     => '/home/stas/perl/5.8.5-ithread/bin/perl5.8.5',
     mp_gen        => '2.0',
     httpd_gen     => '2.0',

Modified: 
httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/t/interactive.t
Url: 
http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/t/interactive.t?view=diff&rev=122852&p1=httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/t/interactive.t&r1=122851&p2=httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/t/interactive.t&r2=122852
==============================================================================
--- 
httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/t/interactive.t   
    (original)
+++ 
httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/t/interactive.t   
    Mon Dec 20 06:46:07 2004
@@ -20,8 +20,13 @@
 local $ENV{APACHE_TEST_INTERACTIVE_CONFIG_TEST} = 1;
 
 my @configs = test_configs();
-my $tests_per_config = 11;
-plan tests => $tests_per_config * @configs + 1;
+if ($configs[0]{repos_type} eq 'mp2_core') {
+    plan skip_all => "modperl2 doesn't run interactive config";
+}
+else {
+    my $tests_per_config = 11;
+    plan tests => $tests_per_config * @configs + 1;
+}
 
 my $orig_dir = go_in();
 

Reply via email to