aboutsummaryrefslogtreecommitdiff
path: root/test/pbdrv/mem.cpp
blob: 6bfb6ec086a75497f2b23833df59c4edd0eae276 (plain)
1
2
3
4
5
6
7
8
9
10
#include <gtest/gtest.h>

#include "pb-mem.h"

TEST(pb_mem, all) {
	void * chunk = pb_malloc(64);
	ASSERT_NE(chunk, nullptr);

	pb_free(chunk);
}