Esempio n. 1
0
int main(POSSIBLY_UNUSED(int argc), char **argv)
{
	EXPECT_ZERO(utility_ctx_init(argv[0])); /* for g_fast_log_mgr */
	EXPECT_ZERO(test_alloc_free());
	EXPECT_ZERO(test_lookups());
	EXPECT_ZERO(test_pack());

	process_ctx_shutdown();

	return EXIT_SUCCESS;
}
Esempio n. 2
0
void NtProcessStartup( void )
{
	log_init();
	test_NtAllocateVirtualMemory();
	test_NtFreeVirtualMemory();
#if 0
	test_alloc_free();
	test_granularity();
	test_chunksize();
	test_prot_mem();
	test_free_mem();
	test_separate_alloc_single_free();
	test_split_and_join();
	test_commit_in_the_middle();
#endif
	log_fini();
}