]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Oops, forgot to commit this earlier.
authorJulian Seward <jseward@acm.org>
Fri, 5 Nov 2004 19:53:22 +0000 (19:53 +0000)
committerJulian Seward <jseward@acm.org>
Fri, 5 Nov 2004 19:53:22 +0000 (19:53 +0000)
git-svn-id: svn://svn.valgrind.org/vex/trunk@497

VEX/test_main.h [new file with mode: 0644]

diff --git a/VEX/test_main.h b/VEX/test_main.h
new file mode 100644 (file)
index 0000000..2da70ab
--- /dev/null
@@ -0,0 +1,35 @@
+
+/* Copy this file (test_main.h.in) to test_main.h, and edit */
+
+/* DEBUG RUN, ON V */
+#if 0
+#define TEST_VSUPPORT  True
+#define TEST_N_ITERS   1
+#define TEST_N_BBS     1
+#define TEST_FLAGS     (1<<7)|(1<<2)|(1<<1)
+#endif
+
+/* CHECKING RUN, ON V */
+#if 1
+#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
+