]> ruderich.org/simon Gitweb - blhc/blhc.git/commitdiff
Fix --help, --version.
authorSimon Ruderich <simon@ruderich.org>
Sat, 28 Apr 2012 08:51:46 +0000 (10:51 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sat, 28 Apr 2012 08:51:46 +0000 (10:51 +0200)
Broken in c2dd74aada8d92258b14727c057e5d02a4c8c7a4.

bin/blhc
t/tests.t

index 12b7eab8832d965c3d84053f62b21cf153513f59..b0ab4a62736860594a8273db34d00d2a7f8d0026 100755 (executable)
--- a/bin/blhc
+++ b/bin/blhc
@@ -449,8 +449,7 @@ if (not Getopt::Long::GetOptions(
             'color'         => \$option_color,
             'arch=s'        => \$option_arch,
             'buildd'        => \$option_buildd,
-        )
-        or scalar @ARGV == 0) {
+        )) {
     require Pod::Usage;
     Pod::Usage::pod2usage(2);
 }
@@ -477,6 +476,12 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
     exit 0;
 }
 
+# Arguments missing.
+if (scalar @ARGV == 0) {
+    require Pod::Usage;
+    Pod::Usage::pod2usage(2);
+}
+
 # Don't load Term::ANSIColor in buildd mode because Term::ANSIColor is not
 # installed on Debian's buildds.
 if (not $option_buildd) {
index 21fca072a3f42bb5eda4262edd3288721753402f..a1b80126f4e5dac114503965a54f9ba2a92c0e09 100644 (file)
--- a/t/tests.t
+++ b/t/tests.t
@@ -19,7 +19,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 136;
+use Test::More tests => 138;
 
 
 sub is_blhc {
@@ -56,6 +56,23 @@ is_blhc '', '--invalid', 2,
 is_blhc '', '', 2,
         $usage;
 
+is_blhc '', '--version', 0,
+        'blhc 0.01  Copyright (C) 2012  Simon Ruderich
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program.  If not, see <http://www.gnu.org/licenses/>.
+';
+
 
 # No compiler commands found.