diff options
author | unknown <msvensson@pilot.mysql.com> | 2008-03-10 14:09:59 +0100 |
---|---|---|
committer | unknown <msvensson@pilot.mysql.com> | 2008-03-10 14:09:59 +0100 |
commit | 551ab51c91d8c53c2798a50fc9a0ceca10610ddd (patch) | |
tree | f8f9c83935169fef7ac118339385850a086e84d5 /mysql-test | |
parent | 8d738693c0dbb252cc30c2bb3e80fbbb7ba0c6ec (diff) | |
download | mariadb-git-551ab51c91d8c53c2798a50fc9a0ceca10610ddd.tar.gz |
Print args in case requirement fails
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/lib/My/SafeProcess.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/lib/My/SafeProcess.pm b/mysql-test/lib/My/SafeProcess.pm index 1c7672d1816..dc600cbb7c5 100644 --- a/mysql-test/lib/My/SafeProcess.pm +++ b/mysql-test/lib/My/SafeProcess.pm @@ -124,8 +124,8 @@ sub new { @_ ); - my $path = delete($opts{'path'}) or die "path required"; - my $args = delete($opts{'args'}) or die "args required"; + my $path = delete($opts{'path'}) or die "path required @_"; + my $args = delete($opts{'args'}) or die "args required @_"; my $input = delete($opts{'input'}); my $output = delete($opts{'output'}); my $error = delete($opts{'error'}); |