/* This file is part of libextractor. (C) 2002, 2003, 2004, 2005, 2006, 2009 Vidyut Samanta and Christian Grothoff libextractor is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. libextractor is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with libextractor; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /** * @file main/test_trivial.c * @brief trivial testcase for libextractor plugin loading * @author Christian Grothoff */ #include "platform.h" #include "extractor.h" static int testLoadPlugins (enum EXTRACTOR_Options policy) { struct EXTRACTOR_PluginList *pl; if (NULL == (pl = EXTRACTOR_plugin_add_defaults (policy))) { fprintf (stderr, "Failed to load default plugins!\n"); return 1; } EXTRACTOR_plugin_remove_all (pl); return 0; } int main (int argc, char *argv[]) { int ret = 0; ret += testLoadPlugins (EXTRACTOR_OPTION_DEFAULT_POLICY); ret += testLoadPlugins (EXTRACTOR_OPTION_DEFAULT_POLICY); ret += testLoadPlugins (EXTRACTOR_OPTION_DEFAULT_POLICY); ret += testLoadPlugins (EXTRACTOR_OPTION_OUT_OF_PROCESS_NO_RESTART); return ret; } /* end of test_trivial.c */