Skip testing example lua scripts which are not bundled

This commit is contained in:
Robin Gareus 2016-12-04 17:50:12 +01:00
parent 454df30ae5
commit 11464bfb18

View File

@ -26,6 +26,10 @@ LuaScriptTest::session_script_test ()
std::string script = "";
if (Glib::path_get_basename (spi->path).at(0) == '_') {
continue;
}
try {
script = Glib::file_get_contents (spi->path);
} catch (Glib::FileError e) {