summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorrmind <rmind@NetBSD.org>2012-07-22 11:30:14 +0000
committerrmind <rmind@NetBSD.org>2012-07-22 11:30:14 +0000
commitc63f2b1228af646602ad49b497c3851c153e11ef (patch)
treeea76a86761622afff49eceef091db47425eee804 /regress
parentbba52a56223969340aac6103765de7c880cac260 (diff)
Revert the test addition.
Diffstat (limited to 'regress')
-rw-r--r--regress/lib/libc/cdb/cdb_test.c90
1 files changed, 0 insertions, 90 deletions
diff --git a/regress/lib/libc/cdb/cdb_test.c b/regress/lib/libc/cdb/cdb_test.c
deleted file mode 100644
index f585fdbb94c..00000000000
--- a/regress/lib/libc/cdb/cdb_test.c
+++ /dev/null
@@ -1,90 +0,0 @@
-/* $NetBSD: cdb_test.c,v 1.1 2012/07/21 22:22:55 rmind Exp $ */
-
-/*
- * This file is in the Public Domain.
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <inttypes.h>
-#include <assert.h>
-
-#include "cdbr.h"
-#include "cdbw.h"
-
-#define CDB_FILE "/tmp/test.cdb"
-
-#define DATASOURCE_SIZE 8192
-
-static uint64_t k[DATASOURCE_SIZE];
-static uint64_t d[DATASOURCE_SIZE];
-
-static void
-build_cdb(uint32_t (*seedgen)(void))
-{
- struct cdbw *cdbw = cdbw_open();
- int i, fd, ret;
-
- for (i = 0; i < DATASOURCE_SIZE; i++) {
- k[i] = ((uint64_t)i << 32UL) | random();
- d[i] = random();
- ret = cdbw_put(cdbw, &k[i], sizeof(k[0]), &d[i], sizeof(d[0]));
- assert(ret == 0);
- }
-
- fd = open(CDB_FILE, O_RDWR | O_CREAT, 0644);
- assert(fd > 0);
-
- ret = cdbw_output(cdbw, fd, "test", seedgen);
- assert(ret == 0);
-
- cdbw_close(cdbw);
- close(fd);
-}
-
-static void
-test_cdb(void)
-{
- struct cdbr *cdbr = cdbr_open(CDB_FILE, CDBR_DEFAULT);
- int i, ret;
-
- assert(cdbr != NULL);
- assert(cdbr_entries(cdbr) == DATASOURCE_SIZE);
-
- for (i = 0; i < DATASOURCE_SIZE; i++) {
- const void *val;
- size_t len;
-
- ret = cdbr_find(cdbr, &k[i], sizeof(k[0]), &val, &len);
- assert(ret == 0);
- assert(len == sizeof(uint64_t));
-
- const uint64_t num = *(const uint64_t *)val;
- if (d[i] == num) {
- continue;
- }
- fprintf(stderr, "%d: 0x%"PRIu64" != 0x%"PRIu64"\n", i, d[i], num);
- abort();
- }
- cdbr_close(cdbr);
-}
-
-int
-main(int argc, char **argv)
-{
- int i;
-
- srandom(time(NULL) ^ getpid());
-
- for (i = 0; i < 64; i++) {
- build_cdb((uint32_t (*)(void))random);
- test_cdb();
-
- build_cdb(cdbw_stable_seeder);
- test_cdb();
- }
-
- return 0;
-}