mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-12 22:24:53 +00:00
test_main.h.base to test_main.h, and edit. git-svn-id: svn://svn.valgrind.org/vex/trunk@457
36 lines
666 B
Plaintext
36 lines
666 B
Plaintext
|
|
/* Copy this file (test_main.h.in) to test_main.h, and edit */
|
|
|
|
/* DEBUG RUN, ON V */
|
|
#if 1
|
|
#define TEST_VSUPPORT True
|
|
#define TEST_N_ITERS 1
|
|
#define TEST_N_BBS 1
|
|
#define TEST_FLAGS (1<<7)
|
|
#endif
|
|
|
|
/* CHECKING RUN, ON V */
|
|
#if 0
|
|
#define TEST_VSUPPORT True
|
|
#define TEST_N_ITERS 1
|
|
#define TEST_N_BBS 100000
|
|
#define TEST_FLAGS 0
|
|
#endif
|
|
|
|
/* PROFILING RUN, NATIVE */
|
|
#if 0
|
|
#define TEST_VSUPPORT False
|
|
#define TEST_N_ITERS 100
|
|
#define TEST_N_BBS 1000
|
|
#define TEST_FLAGS 0
|
|
#endif
|
|
|
|
/* PROFILING RUN, REDUCED WORKLOAD */
|
|
#if 0
|
|
#define TEST_VSUPPORT False
|
|
#define TEST_N_ITERS 3
|
|
#define TEST_N_BBS 1000
|
|
#define TEST_FLAGS 0
|
|
#endif
|
|
|