1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2026-03-02 04:09:18 +00:00

reorganized project: prepared to extract common functionality

This commit is contained in:
Falk Werner
2019-02-25 20:17:13 +01:00
parent c7c28416db
commit 1976841334
88 changed files with 217 additions and 218 deletions

View File

@@ -1,5 +1,5 @@
#include <gtest/gtest.h>
#include "wsfs/fuse_wrapper.h"
#include "wsfs/adapter/fuse_wrapper.h"
TEST(libfuse, fuse_req_t_size)
{

View File

@@ -1,7 +1,7 @@
#include <string>
#include <gtest/gtest.h>
#include "wsfs/jsonrpc/response.h"
#include "wsfs/adapter/jsonrpc/response.h"
static void wsfs_response_parse_str(

View File

@@ -5,8 +5,8 @@
#include <sys/stat.h>
#include <unistd.h>
#include "wsfs/server.h"
#include "wsfs/server_config.h"
#include "wsfs/adapter/server.h"
#include "wsfs/adapter/server_config.h"
TEST(server, create_dispose)

View File

@@ -1,7 +1,7 @@
#include <gtest/gtest.h>
#include "msleep.hpp"
#include "wsfs/time/timepoint.h"
#include "wsfs/adapter/time/timepoint.h"
using wsfs_test::msleep;

View File

@@ -3,8 +3,8 @@
#include <cstddef>
#include "msleep.hpp"
#include "wsfs/time/timer.h"
#include "wsfs/time/timeout_manager.h"
#include "wsfs/adapter/time/timer.h"
#include "wsfs/adapter/time/timeout_manager.h"
using std::size_t;
using wsfs_test::msleep;

View File

@@ -1,6 +1,6 @@
#include <gtest/gtest.h>
#include "wsfsp/url.h"
#include "wsfs/provider/url.h"
TEST(url, ParseWs)
{