summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/uptexdir/upbibtex-openout-test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/uptexdir/upbibtex-openout-test.pl')
-rwxr-xr-xBuild/source/texk/web2c/uptexdir/upbibtex-openout-test.pl22
1 files changed, 22 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/uptexdir/upbibtex-openout-test.pl b/Build/source/texk/web2c/uptexdir/upbibtex-openout-test.pl
new file mode 100755
index 00000000000..cb0b7f3ef9b
--- /dev/null
+++ b/Build/source/texk/web2c/uptexdir/upbibtex-openout-test.pl
@@ -0,0 +1,22 @@
+#!/usr/bin/env perl
+#
+# Public domain. Originally written 2010, Karl Berry.
+# Check that upbibtex 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 ("./upbibtex", "$srcdir/tests/exampl.aux");
+
+ # The test fails if the program succeeded. Could also check the output.
+ my $bad = ($ret == 0);
+ return $bad;
+}