diff options
| author | Sven Willner <sven.willner@gmail.com> | 2018-09-13 15:47:18 +0200 | 
|---|---|---|
| committer | Sven Willner <sven.willner@gmail.com> | 2018-09-13 15:47:18 +0200 | 
| commit | 4ca5b177bbaf656611dd253d7c8e37317b5b186f (patch) | |
| tree | 5f66934df56dfcbe11364bda57899d078511c3c8 /test | |
| parent | 3671b53046afbeced26162fc413fcfb7971116b9 (diff) | |
| parent | 9241e8faa78cc02c08537ed0bd7b236d172c3ed7 (diff) | |
Merge branch 'master' of github.com:derf/feh
Diffstat (limited to 'test')
| -rw-r--r-- | test/list/custom | 8 | ||||
| -rwxr-xr-x | test/mandoc.t | 13 | ||||
| -rw-r--r-- | test/nx_action/loadable_action | 8 | ||||
| -rw-r--r-- | test/nx_action/loadable_naction | 8 | ||||
| -rw-r--r-- | test/nx_action/unloadable_action | 8 | ||||
| -rw-r--r-- | test/nx_action/unloadable_naction | 8 | 
6 files changed, 30 insertions, 23 deletions
| diff --git a/test/list/custom b/test/list/custom index b5ddb32..dbe2074 100644 --- a/test/list/custom +++ b/test/list/custom @@ -1,4 +1,4 @@ -test/ok/gif; 16; 4; list; gif; 256; 953; gif; 0; 16 -test/ok/jpg; 16; 4; list; jpg; 256; 354; jpeg; 0; 16 -test/ok/png; 16; 4; list; png; 256; 403; png; 0; 16 -test/ok/pnm; 16; 4; list; pnm; 256; 269; pnm; 0; 16 +test/ok/gif; 16; 4; list; gif; 256; 953; gif; 1; 16 +test/ok/jpg; 16; 4; list; jpg; 256; 354; jpeg; 2; 16 +test/ok/png; 16; 4; list; png; 256; 403; png; 3; 16 +test/ok/pnm; 16; 4; list; pnm; 256; 269; pnm; 4; 16 diff --git a/test/mandoc.t b/test/mandoc.t index 3740809..638c5e9 100755 --- a/test/mandoc.t +++ b/test/mandoc.t @@ -6,15 +6,22 @@ use 5.010;  use Test::More tests => 3;  SKIP: { -	qx{mandoc -V}; +	my $mandoc_present = 0; -	if ( $? != 0 ) { +	for my $path (split(qr{:}, $ENV{PATH})) { +		if (-x "${path}/mandoc") { +			$mandoc_present = 1; +			last; +		} +	} + +	if ( not $mandoc_present ) {  		diag('mandoc not installed, test skipped. This is NOT fatal.');  		skip( 'mandoc not installed', 3 );  	}  	for my $file ( 'feh', 'feh-cam', 'gen-cam-menu' ) { -		qx{mandoc -Tlint man/${file}.1}; +		qx{mandoc -Tlint -Werror man/${file}.1};  		is( $?, 0, "${file}.1: Valid mdoc syntax" );  	}  } diff --git a/test/nx_action/loadable_action b/test/nx_action/loadable_action index d173261..fbf517b 100644 --- a/test/nx_action/loadable_action +++ b/test/nx_action/loadable_action @@ -1,8 +1,8 @@ -touch test/ok/gif -touch test/ok/jpg -touch test/ok/png -touch test/ok/pnm  test/ok/gif +touch test/ok/gif  test/ok/jpg +touch test/ok/jpg  test/ok/png +touch test/ok/png  test/ok/pnm +touch test/ok/pnm diff --git a/test/nx_action/loadable_naction b/test/nx_action/loadable_naction index d173261..fbf517b 100644 --- a/test/nx_action/loadable_naction +++ b/test/nx_action/loadable_naction @@ -1,8 +1,8 @@ -touch test/ok/gif -touch test/ok/jpg -touch test/ok/png -touch test/ok/pnm  test/ok/gif +touch test/ok/gif  test/ok/jpg +touch test/ok/jpg  test/ok/png +touch test/ok/png  test/ok/pnm +touch test/ok/pnm diff --git a/test/nx_action/unloadable_action b/test/nx_action/unloadable_action index c16572e..cdf3ed8 100644 --- a/test/nx_action/unloadable_action +++ b/test/nx_action/unloadable_action @@ -1,8 +1,8 @@ -rm test/fail/gif -rm test/fail/jpg -rm test/fail/png -rm test/fail/pnm  test/fail/gif +rm test/fail/gif  test/fail/jpg +rm test/fail/jpg  test/fail/png +rm test/fail/png  test/fail/pnm +rm test/fail/pnm diff --git a/test/nx_action/unloadable_naction b/test/nx_action/unloadable_naction index c16572e..cdf3ed8 100644 --- a/test/nx_action/unloadable_naction +++ b/test/nx_action/unloadable_naction @@ -1,8 +1,8 @@ -rm test/fail/gif -rm test/fail/jpg -rm test/fail/png -rm test/fail/pnm  test/fail/gif +rm test/fail/gif  test/fail/jpg +rm test/fail/jpg  test/fail/png +rm test/fail/png  test/fail/pnm +rm test/fail/pnm | 
