From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16064 invoked by alias); 9 Aug 2010 10:23:56 -0000 Received: (qmail 16049 invoked by uid 9449); 9 Aug 2010 10:23:56 -0000 Date: Mon, 09 Aug 2010 10:23:00 -0000 Message-ID: <20100809102356.16047.qmail@sourceware.org> From: thornber@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2/unit-tests/regex matcher_t.c Mailing-List: contact lvm2-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: lvm2-cvs-owner@sourceware.org X-SW-Source: 2010-08/txt/msg00027.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: thornber@sourceware.org 2010-08-09 10:23:55 Modified files: unit-tests/regex: matcher_t.c Log message: [REGEX] matcher_t unit test now takes a flag to turn on fingerprinting Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/unit-tests/regex/matcher_t.c.diff?cvsroot=lvm2&r1=1.2&r2=1.3 --- LVM2/unit-tests/regex/matcher_t.c 2010/07/20 15:32:07 1.2 +++ LVM2/unit-tests/regex/matcher_t.c 2010/08/09 10:23:54 1.3 @@ -109,9 +109,18 @@ char **regex; int nregex; int ret = 0; + int want_finger_print = 0, i; + const char *pattern_file = NULL; - if (argc < 2) { - fprintf(stderr, "Usage : %s \n", argv[0]); + for (i = 1; i < argc; i++) + if (!strcmp(argv[i], "--fingerprint")) + want_finger_print = 1; + + else + pattern_file = argv[i]; + + if (!pattern_file) { + fprintf(stderr, "Usage : %s [--fingerprint] \n", argv[0]); exit(1); } @@ -123,7 +132,7 @@ goto err; } - if (!_read_spec(argv[1], ®ex, &nregex)) { + if (!_read_spec(pattern_file, ®ex, &nregex)) { fprintf(stderr, "Couldn't read the lex specification\n"); ret = 3; goto err; @@ -135,7 +144,8 @@ goto err; } - printf("fingerprint: %x\n", dm_regex_fingerprint(scanner)); + if (want_finger_print) + printf("fingerprint: %x\n", dm_regex_fingerprint(scanner)); _scan_input(scanner, regex); _free_regex(regex, nregex);