Add bt_plugin test
[babeltrace.git] / tests / lib / test-plugin-plugins / invalid.c
CommitLineData
cbb9e0b1
PP
1/*
2 * Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; under version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#include <babeltrace/plugin/plugin-dev.h>
19
20static enum bt_plugin_status plugin_init(struct bt_plugin *plugin)
21{
22 return BT_PLUGIN_STATUS_OK;
23}
24
25static enum bt_plugin_status plugin_exit(void)
26{
27 return BT_PLUGIN_STATUS_OK;
28}
29
30BT_PLUGIN_DESCRIPTION("Invalid plugin because the name is missing");
31BT_PLUGIN_AUTHOR("Janine Sutto");
32BT_PLUGIN_LICENSE("Beerware");
33BT_PLUGIN_INIT(plugin_init);
34BT_PLUGIN_EXIT(plugin_exit);
This page took 0.024876 seconds and 4 git commands to generate.