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

#include "pb-mem.h"

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

	pb_free(chunk);
}