/[Apache-SVN]/httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestRun.pm
ViewVC logotype

Diff of /httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestRun.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

--- httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestRun.pm	2004/12/20 03:59:50	122804
+++ httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestRun.pm	2004/12/20 04:02:17	122805
@@ -1310,8 +1310,12 @@ sub exit_shell {
 sub skip_test_suite {
     my $no_doubt = shift;
 
-    # we can't prompt when there is no STDIN;
-    $no_doubt = 1 unless -t STDIN;
+    # we can't prompt when STDIN is not attached to tty, unless we
+    # were told that's it OK via env var (in which case some program
+    # will feed the interactive prompts
+    unless (-t STDIN || $ENV{APACHE_TEST_INTERACTIVE_PROMPT_OK}) {
+        $no_doubt = 1;
+    }
 
     print qq[
 

 

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26