]> git.donarmstrong.com Git - debbugs.git/commitdiff
chdir in the test to handle require common.pl
authorDon Armstrong <don@volo>
Wed, 21 Feb 2007 08:01:20 +0000 (00:01 -0800)
committerDon Armstrong <don@volo>
Wed, 21 Feb 2007 08:01:20 +0000 (00:01 -0800)
t/08_pkgreport.t

index f834c759284bce5650f135a7a60e75a3372c48d5..df4861d9d0f22f7cd87e5cdae63c4e8796b8360f 100644 (file)
@@ -60,7 +60,8 @@ EOF
 my $pkgreport_cgi_handler = sub {
      # I do not understand why this is necessary.
      $ENV{DEBBUGS_CONFIG_FILE} = "$config{config_dir}/debbugs_config";
-     my $content = qx(perl -I. -I./cgi -T cgi/pkgreport.cgi);
+     # We cd here because pkgreport uses require ./common.pl
+     my $content = qx(cd cgi; perl -I.. -T pkgreport.cgi);
      # Strip off the Content-Type: stuff
      $content =~ s/^\s*Content-Type:[^\n]+\n*//si;
      print $content;