1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Merge branch 'feature/syntax-check' into fix/syntax-errors

This commit is contained in:
Stig Sandbeck Mathisen 2014-10-04 21:50:26 +02:00
commit c03cd065c2
2 changed files with 6 additions and 0 deletions

View file

@ -45,6 +45,7 @@ install:
- cpanm --notest Text::Iconv
- cpanm --notest XML::LibXML
- cpanm --notest XML::Simple
- cpanm --notest XML::Smart
- cpanm --notest XML::Twig
- cpanm --notest nvidia::ml
# - Sys::Virt version matching the test system's libvirt-dev

View file

@ -91,6 +91,11 @@ sub process_file {
$filename . " gawk syntax check"
);
}
elsif ( $interpreter =~ m{expect} ) {
pass(
"No idea how to check expect scripts, pretending everything is ok"
);
}
else {
fail( $filename . " unknown interpreter " . $interpreter );
}