diff --git a/t/03_syntax_check.t b/t/03_syntax_check.t index f1e95f6..6bad130 100755 --- a/t/03_syntax_check.t +++ b/t/03_syntax_check.t @@ -9,7 +9,10 @@ my $tests = 0; my $prg="testssl.sh"; my $os="$^O"; - +if ( $os eq "darwin" ){ + printf "%s\n", "Skipping checks"; + exit 0; +} #1 printf "\n%s\n", "Testing for missing vars at left hand side in double square brackets ..."; @@ -20,6 +23,7 @@ is(scalar(@matches), 0, "Checking bad '[[ LHS' patterns") or diag(@matches); $tests++; + #2 printf "\n%s\n", "Testing for backticks ...";