X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=tests%2Flib%2Fcommon.c;fp=tests%2Flib%2Fcommon.c;h=25bf735eb81ad6a3442f549d8edd43edff0120e9;hp=0000000000000000000000000000000000000000;hb=aa968dde60d1c3cff4dcebcca4b6f5c2b9737829;hpb=38380786954798ace38594b1e92905aeba4da55d diff --git a/tests/lib/common.c b/tests/lib/common.c new file mode 100644 index 00000000..25bf735e --- /dev/null +++ b/tests/lib/common.c @@ -0,0 +1,42 @@ +/* + * common.c + * + * Lib BabelTrace - Common function to all tests + * + * Copyright 2012 - Yannick Brosseau + * + * This program 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; under version 2 of the License. + * + * This program 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 this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ +#define _GNU_SOURCE + +#include +#include + +struct bt_context *create_context_with_path(const char *path) +{ + struct bt_context *ctx; + int ret; + + ctx = bt_context_create(); + if (!ctx) { + return NULL; + } + + ret = bt_context_add_trace(ctx, path, "ctf", NULL, NULL, NULL); + if (ret < 0) { + bt_context_put(ctx); + return NULL; + } + return ctx; +}