Show env vars when running tests in verbose mode

This commit is contained in:
Duncan Ferguson 2016-07-23 10:54:27 +01:00
parent 64b414bdbe
commit eb586e1281

View file

@ -1,6 +1,8 @@
#!/bin/bash
#!/usr/bin/env perl
# small 'fake' script to allow xterm to be found when performing tests
# on systems that do not have it
warn "$_=$ENV{$_}",$/ for (sort keys %ENV) if ( $ENV{TEST_VERBOSE} );;
exit 0