diff --git a/data_structures/skiplist/skipnode.hpp b/data_structures/skiplist/skipnode.hpp index 17d3e0cac..e03d76f7f 100644 --- a/data_structures/skiplist/skipnode.hpp +++ b/data_structures/skiplist/skipnode.hpp @@ -5,7 +5,7 @@ #include #include -#include "utils/sync/spinlock.hpp" +#include "sync/spinlock.hpp" // concurrent skiplist node based on the implementation described in // "A Provably Correct Scalable Concurrent Skip List" diff --git a/test/skiplist.cpp b/test/skiplist.cpp index 39e7ac521..f2b96fb38 100644 --- a/test/skiplist.cpp +++ b/test/skiplist.cpp @@ -42,3 +42,7 @@ TEST_CASE("New height distribution must be approx. 1/2 1/4 1/8 ...") REQUIRE(relative_error < error_margin); } } + +TEST_CASE("You can add an item to the skiplist") +{ +}