summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/ptexdir/pbibtex-openout-test.pl
blob: cf24a6e329a916c4d085976dd1317af337b6a62e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env perl
# $Id: pbibtex-openout-test.pl 17384 2010-03-08 18:49:47Z karl $
# Public domain.  Originally written 2010, Karl Berry.
# Check that pbibtex respects openout_any.

# srcdir = web2c (in the source tree)
BEGIN { chomp ($srcdir = $ENV{"srcdir"} || `cd \`dirname $0\`/.. && pwd`); }
require "$srcdir/../tests/common-test.pl";

exit (&main ());

sub main
{
  $ENV{"openout_any"} = "p";  # should already be in texmf.cnf, but ...
  
  # .blg open of abs path should fail:
  my $ret = &test_run ("./pbibtex", "$srcdir/tests/exampl.aux");

  # The test fails if the program succeeded.  Could also check the output.
  my $bad = ($ret == 0);
  return $bad;
}