Include a test for SEEK_BEGIN and SEEK_LAST
[babeltrace.git] / tests / lib / common.c
diff --git a/tests/lib/common.c b/tests/lib/common.c
new file mode 100644 (file)
index 0000000..25bf735
--- /dev/null
@@ -0,0 +1,42 @@
+/*
+ * common.c
+ *
+ * Lib BabelTrace - Common function to all tests
+ *
+ * Copyright 2012 - Yannick Brosseau <yannick.brosseau@gmail.com>
+ *
+ * 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 <babeltrace/context.h>
+#include <babeltrace/iterator.h>
+
+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;
+}
This page took 0.022997 seconds and 4 git commands to generate.