aboutsummaryrefslogtreecommitdiff
path: root/support/test-driver.c
diff options
context:
space:
mode:
Diffstat (limited to 'support/test-driver.c')
-rw-r--r--support/test-driver.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/support/test-driver.c b/support/test-driver.c
index b0bea46..1552f62 100644
--- a/support/test-driver.c
+++ b/support/test-driver.c
@@ -116,7 +116,9 @@ main (int argc, char **argv)
#if defined (TEST_FUNCTION) && defined (TEST_FUNCTON_ARGV)
# error TEST_FUNCTION and TEST_FUNCTION_ARGV cannot be defined at the same time
#endif
-#if defined (TEST_FUNCTION)
+#ifdef RUN_COMMAND_MODE
+ test_config.run_command_mode = 1;
+#elif defined (TEST_FUNCTION)
test_config.test_function = TEST_FUNCTION;
#elif defined (TEST_FUNCTION_ARGV)
test_config.test_function_argv = TEST_FUNCTION_ARGV;