From f56549cdd267bcc20156af0c206520fef77ff06f Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 4 Jun 2013 08:32:06 +0200 Subject: fix tests failing when compiled with help=1 --- ChangeLog | 1 + src/options.c | 4 ++++ test/feh.t | 20 ++++++++++++++++++-- test/no-loadable-files.help | 2 ++ 4 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 test/no-loadable-files.help diff --git a/ChangeLog b/ChangeLog index 1ee60db..5319beb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ git HEAD * Patch by David Gowers: Add %L format code (temporary copy of filelist) * Fix buffer overflows in printf implementation (affects --action, --customlist, --index-info, --info, --thumb-title, --title) + * Fix tests failing when compiled with help=1 Fri, 03 May 2013 21:16:59 +0200 Daniel Friesel diff --git a/src/options.c b/src/options.c index 469115e..627c7da 100644 --- a/src/options.c +++ b/src/options.c @@ -805,6 +805,10 @@ static void show_version(void) "exif " #endif +#ifdef INCLUDE_HELP + "help " +#endif + #if _FILE_OFFSET_BITS == 64 "stat64 " #endif diff --git a/test/feh.t b/test/feh.t index 8f415f3..e530087 100644 --- a/test/feh.t +++ b/test/feh.t @@ -10,6 +10,7 @@ my $feh = "src/feh"; my $images_ok = 'test/ok/gif test/ok/jpg test/ok/png test/ok/pnm'; my $images_fail = 'test/fail/gif test/fail/jpg test/fail/png test/fail/pnm'; my $images = "${images_ok} ${images_fail}"; +my $has_help = 0; my $feh_name = $ENV{'PACKAGE'}; @@ -33,6 +34,11 @@ if (length($feh_name) == 0) { die($err_no_env); } +my $version = qx{$feh --version}; +if ($version =~ m{ Compile-time \s switches : \s .* help }ox) { + $has_help = 1; +} + my $re_warning = qr{${feh_name} WARNING: test/fail/... \- No Imlib2 loader for that file format\n}; my $re_loadable = qr{test/ok/...}; @@ -139,13 +145,23 @@ $cmd = Test::Command->new(cmd => "$feh --list --min-dimension 20x20 $images_ok") $cmd->exit_is_num(1); $cmd->stdout_is_eq(''); -$cmd->stderr_is_file('test/no-loadable-files'); +if ($has_help) { + $cmd->stderr_is_file('test/no-loadable-files.help'); +} +else { + $cmd->stderr_is_file('test/no-loadable-files'); +} $cmd = Test::Command->new(cmd => "$feh --list --max-dimension 10x10 $images_ok"); $cmd->exit_is_num(1); $cmd->stdout_is_eq(''); -$cmd->stderr_is_file('test/no-loadable-files'); +if ($has_help) { + $cmd->stderr_is_file('test/no-loadable-files.help'); +} +else { + $cmd->stderr_is_file('test/no-loadable-files'); +} $cmd = Test::Command->new(cmd => "$feh --list --min-dimension 16x16 $images_ok"); diff --git a/test/no-loadable-files.help b/test/no-loadable-files.help new file mode 100644 index 0000000..b1b61d8 --- /dev/null +++ b/test/no-loadable-files.help @@ -0,0 +1,2 @@ +feh: No loadable images specified. +See 'feh --help' or 'man feh' for detailed usage information -- cgit v1.2.3