aboutsummaryrefslogtreecommitdiff
path: root/tests/arena_test.cu
diff options
context:
space:
mode:
authorKunoiSayami <[email protected]>2021-11-05 17:31:32 +0800
committerKunoiSayami <[email protected]>2021-11-05 17:31:32 +0800
commit8ffa7f8b610faa9f4e424f19ca6139d54a22a0c6 (patch)
treef5a1910bbc3cd8fe3d2e4d6390aea935ae0a4077 /tests/arena_test.cu
parent0a809645da4141e026867f6e0d81c71f02f1bc4e (diff)
refactor(test): Move tests to standalone folder
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'tests/arena_test.cu')
-rw-r--r--tests/arena_test.cu52
1 files changed, 52 insertions, 0 deletions
diff --git a/tests/arena_test.cu b/tests/arena_test.cu
new file mode 100644
index 0000000..68fc8ff
--- /dev/null
+++ b/tests/arena_test.cu
@@ -0,0 +1,52 @@
+#include "arena.cuh"
+#include "random.h"
+
+using namespace cleveldb;
+
+int main() {
+ std::vector<std::pair<size_t, char*>> allocated;
+ Arena arena;
+ const int N = 100000;
+ size_t bytes = 0;
+ Random rnd(301);
+ for (int i = 0; i < N; i++) {
+ size_t s;
+ if (i % (N / 10) == 0) {
+ s = i;
+ } else {
+ s = rnd.OneIn(4000)
+ ? rnd.Uniform(6000)
+ : (rnd.OneIn(10) ? rnd.Uniform(100) : rnd.Uniform(20));
+ }
+ if (s == 0) {
+ // Our arena disallows size 0 allocations.
+ s = 1;
+ }
+ char* r;
+ if (rnd.OneIn(10)) {
+ r = arena.AllocateAligned(s);
+ } else {
+ r = arena.Allocate(s);
+ }
+
+ for (size_t b = 0; b < s; b++) {
+ // Fill the "i"th allocation with a known bit pattern
+ r[b] = i % 256;
+ }
+ bytes += s;
+ allocated.push_back(std::make_pair(s, r));
+ assert(arena.MemoryUsage() >= bytes);
+ if (i > N / 10) {
+ assert(arena.MemoryUsage() <= bytes * 1.10);
+ }
+ }
+ for (size_t i = 0; i < allocated.size(); i++) {
+ size_t num_bytes = allocated[i].first;
+ const char* p = allocated[i].second;
+ for (size_t b = 0; b < num_bytes; b++) {
+ // Check the "i"th allocation for the known bit pattern
+ assert((int(p[b]) & 0xff) == (i % 256));
+ }
+ }
+ return 0;
+}