Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ add_subdirectory(apps)
#

warthog_top_level()
if(_is_top)
if(${_warthog_is_top})
option(BUILD_TESTING "Building testing suite" OFF)
include(CTest)
include(FetchContent)
Expand Down
2 changes: 1 addition & 1 deletion tests/memory/bittable.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ test_bittable_vector(const bt& b, const vec& v)
TEMPLATE_TEST_CASE_SIG(
"bittable random testing", "[bittable][rng]",
((typename T, size_t B), T, B), (uint8_t, 1), (uint8_t, 2), (uint8_t, 8),
(uint32_t, 1), (uint32_t, 16), (uint64_t, 32), (uint64_t, 64))
(uint32_t, 1), (uint32_t, 8), (uint64_t, 4), (uint64_t, 8))
{
using bittable = warthog::memory::bittable<uint32_t, T, B>;
auto width = GENERATE(1, 128, 1000);
Expand Down