From: Bruce Montrose Date: Tue, 9 Jul 2002 19:57:38 +0000 (+0000) Subject: added file to codebase X-Git-Tag: tor-0.0.2pre8~436 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=934ca320ff6826f541e3f0b5b10abb55b7976cfd;p=thirdparty%2Ftor.git added file to codebase svn:r32 --- diff --git a/src/or/test_config.c b/src/or/test_config.c new file mode 100644 index 0000000000..171adb659a --- /dev/null +++ b/src/or/test_config.c @@ -0,0 +1,32 @@ +#include "or.h" + +int loglevel; + +int main(int ac, char **av) +{ + or_options_t options; + int argc, rtn_val, failures, total; + char fname[512]; + FILE *pipe; + char *argv[] = { "or", "-v", "-f", fname, NULL }; + argc = 4; + failures = total = 0; + printf("Config file test suite...\n\n"); + pipe = popen("ls -1 ../config/*orrc","r"); + while ( fgets(fname,sizeof(fname),pipe) ) + { + fname[strlen(fname)-1] = '\0'; + printf("%s\n--------------------\n", fname); + rtn_val = getoptions(argc,argv,&options); + ++total; + if ( rtn_val) + { + ++failures; + printf("Test failed!\n\n"); + } + else + printf("Test succeeded\n\n"); + } + printf("%6.2f percent. %d failures.\n",(total - failures)*100/(float)total,failures); + return failures; +}