Remove Babeltrace 1 files and reorganize the tree
[babeltrace.git] / tests / lib / common.c
index 60e2be04244a34b821d5e93bb14a57d85530e42d..8c2829a365eb7f6e90f4a63c8fa583cdd7936f4c 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 <babeltrace/compat/limits.h>
+#include <sys/stat.h>
 
-struct bt_context *create_context_with_path(const char *path)
+void recursive_rmdir(const char *path)
 {
-       struct bt_context *ctx;
-       int ret;
+       struct dirent *entry;
+       DIR *dir = opendir(path);
 
-       ctx = bt_context_create();
-       if (!ctx) {
-               return NULL;
+       if (!dir) {
+               perror("# opendir");
+               return;
        }
 
-       ret = bt_context_add_trace(ctx, path, "ctf", NULL, NULL, NULL);
-       if (ret < 0) {
-               bt_context_put(ctx);
-               return NULL;
+       while ((entry = readdir(dir))) {
+               struct stat st;
+               char filename[PATH_MAX];
+
+               if (snprintf(filename, sizeof(filename), "%s/%s",
+                               path, entry->d_name) <= 0) {
+                       continue;
+               }
+
+               if (stat(filename, &st)) {
+                       continue;
+               }
+
+               if (S_ISREG(st.st_mode)) {
+                       unlinkat(bt_dirfd(dir), entry->d_name, 0);
+               }
        }
-       return ctx;
+
+       rmdir(path);
+       closedir(dir);
 }
This page took 0.023648 seconds and 4 git commands to generate.