mirror of
https://github.com/drwetter/testssl.sh.git
synced 2026-09-14 13:48:16 +02:00
Squash complains by perlcritic
and enable warnings
This commit is contained in:
+3
-2
@@ -3,6 +3,7 @@
|
|||||||
# Basics: is there a syntax error where already bash hiccups on?
|
# Basics: is there a syntax error where already bash hiccups on?
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
use warnings;
|
||||||
use Test::More;
|
use Test::More;
|
||||||
use File::stat;
|
use File::stat;
|
||||||
|
|
||||||
@@ -25,11 +26,11 @@ my $info = stat($prg);
|
|||||||
my $retMode = $info->mode;
|
my $retMode = $info->mode;
|
||||||
|
|
||||||
#1
|
#1
|
||||||
is($retMode & 0400, 0400, "Checking \"./testssl.sh\" for read permission");
|
is($retMode & oct("400"), oct("0400"), "Checking \"./testssl.sh\" for read permission");
|
||||||
$tests++;
|
$tests++;
|
||||||
|
|
||||||
#2
|
#2
|
||||||
is($retMode & 0100, 0100, "Checking \"./testssl.sh\" for execute permission");
|
is($retMode & oct("0100"), oct("0100)", "Checking \"./testssl.sh\" for execute permission");
|
||||||
$tests++;
|
$tests++;
|
||||||
|
|
||||||
$fileout = `bash $prg 2>&1`;
|
$fileout = `bash $prg 2>&1`;
|
||||||
|
|||||||
Reference in New Issue
Block a user