Skip to content
Snippets Groups Projects
Commit cb2dddc6 authored by Stephan Bosch's avatar Stephan Bosch
Browse files

Testsuite: added support for specifying the available extensions at the commandline.

parent 23a5f9c8
No related branches found
No related tags found
No related merge requests found
......@@ -46,11 +46,11 @@
* Testsuite initialization
*/
static void testsuite_tool_init(void)
static void testsuite_tool_init(const char *extensions)
{
sieve_tool_init(FALSE);
sieve_extensions_set_string(NULL);
sieve_extensions_set_string(extensions);
(void) sieve_extension_register(&testsuite_extension, TRUE);
......@@ -120,7 +120,7 @@ int main(int argc, char **argv)
struct master_service *service;
const char *getopt_str;
int c;
const char *scriptfile, *dumpfile;
const char *scriptfile, *dumpfile, *extensions;
const char *user;
struct sieve_binary *sbin;
const char *sieve_dir;
......@@ -131,15 +131,12 @@ int main(int argc, char **argv)
MASTER_SERVICE_FLAG_STANDALONE,
argc, argv);
/* Initialize testsuite */
testsuite_tool_init();
user = getenv("USER");
/* Parse arguments */
scriptfile = dumpfile = NULL;
scriptfile = dumpfile = extensions = NULL;
getopt_str = t_strconcat("d:t",
getopt_str = t_strconcat("d:x:t",
master_service_getopt_string(), NULL);
while ((c = getopt(argc, argv, getopt_str)) > 0) {
switch (c) {
......@@ -147,6 +144,10 @@ int main(int argc, char **argv)
/* destination address */
dumpfile = optarg;
break;
case 'x':
/* destination address */
extensions = optarg;
break;
case 't':
trace = TRUE;
break;
......@@ -172,6 +173,9 @@ int main(int argc, char **argv)
i_fatal_status(EX_USAGE, "Unknown argument: %s", argv[optind]);
}
/* Initialize testsuite */
testsuite_tool_init(extensions);
printf("Test case: %s:\n\n", scriptfile);
/* Initialize environment */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.