Skip to content

Commit

Permalink
Semlock: Disable test for plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
sanssecours committed Jul 9, 2018
1 parent 4cdc866 commit b13d34a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/kdb/testkdb_allplugins.cpp
Expand Up @@ -36,6 +36,10 @@ std::vector<std::string> getAllPlugins ()
plugins.erase (std::remove (plugins.begin (), plugins.end (), "crypto_gcrypt"), plugins.end ());
plugins.erase (std::remove (plugins.begin (), plugins.end (), "crypto_openssl"), plugins.end ());
plugins.erase (std::remove (plugins.begin (), plugins.end (), "crypto_botan"), plugins.end ());

// Valgrind reports memory leaks for the `semlock` plugin on Debian Unstable: http://issues.libelektra.org/2113
plugins.erase (std::remove (plugins.begin (), plugins.end (), "semlock"), plugins.end ());

return plugins;
}

Expand Down

0 comments on commit b13d34a

Please sign in to comment.