From a21194646aec015bea81886ffce63d7cef8ad346 Mon Sep 17 00:00:00 2001 From: Victor van den Elzen Date: Wed, 6 Aug 2008 15:15:01 +0200 Subject: [PATCH] minor bugfix in performtest.pl --- test/performtest.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/performtest.pl b/test/performtest.pl index ab5b3ef9..5574fc6c 100755 --- a/test/performtest.pl +++ b/test/performtest.pl @@ -133,7 +133,7 @@ die "Please specify either --nasm or --clean. Use --help for help.\n" unless $nasm or $clean; die "Please specify the test files, e.g. *.asm\n" unless @ARGV; -unless (-x $nasm) { +unless (!defined $nasm or -x $nasm) { warn "Warning: $nasm may not be executable. Expect problems.\n\n"; sleep 5; } -- 2.11.4.GIT