/*
* Copyright (C) 2011-2013, 2016 Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/* $Id$ */
/*! \file */
#include <config.h>
#include <atf-c.h>
#include <unistd.h>
#include "isctest.h"
static void
}
/*
* Individual unit tests
*/
}
int i;
/* Nothing should be in the table yet */
/*
* Put 1024 entries in the table (this should necessate
* regrowing the hash table several times
*/
for (i = 0; i < 1024; i++) {
if (result != ISC_R_SUCCESS)
}
/*
* Try to put them in again; this should fail
*/
for (i = 0; i < 1024; i++) {
}
/*
* Retrieve them; this should succeed
*/
for (i = 0; i < 1024; i++) {
}
/*
* Undefine them
*/
for (i = 0; i < 1024; i++) {
}
/*
* Retrieve them again; this should fail
*/
for (i = 0; i < 1024; i++) {
}
isc_test_end();
}
/*
* Main
*/
return (atf_no_error());
}