Add `-internal` suffix to all internal header files
[babeltrace.git] / tests / lib / common.c
index d137cb304a764f3a3680af7284fbb1c60aad6054..a6812b9ffff2d2200a8bd48a68e1aadf200a9cc1 100644 (file)
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#include <babeltrace/context.h>
-#include <babeltrace/iterator.h>
-#include <babeltrace/compat/dirent.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <babeltrace/compat/dirent-internal.h>
+#include <babeltrace/compat/limits-internal.h>
 #include <sys/stat.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;
-}
-
 void recursive_rmdir(const char *path)
 {
        struct dirent *entry;
This page took 0.0236 seconds and 4 git commands to generate.