summaryrefslogtreecommitdiffstats
path: root/contrib/sendmail/libsm/t-match.c
blob: c92052fbbdbe3a0dd50405123f2e96ecc392d117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * Copyright (c) 2000 Sendmail, Inc. and its suppliers.
 *	All rights reserved.
 *
 * By using this file, you agree to the terms and conditions set
 * forth in the LICENSE file which can be found at the top level of
 * the sendmail distribution.
 */

#include <sm/gen.h>
SM_IDSTR(id, "@(#)$Id: t-match.c,v 1.1.1.1 2002/02/17 21:56:43 gshapiro Exp $")

#include <sm/string.h>
#include <sm/io.h>
#include <sm/test.h>

#define try(str, pat, want) \
	got = sm_match(str, pat); \
	if (!SM_TEST(got == want)) \
		(void) sm_io_fprintf(smioout, SM_TIME_DEFAULT, \
			"sm_match(\"%s\", \"%s\") returns %s\n", \
			str, pat, got ? "true" : "false");

int
main(argc, argv)
	int argc;
	char **argv;
{
	bool got;

	sm_test_begin(argc, argv, "test sm_match");

	try("foo", "foo", true);
	try("foo", "bar", false);
	try("foo[bar", "foo[bar", true);
	try("foo[bar]", "foo[bar]", false);
	try("foob", "foo[bar]", true);
	try("a-b", "a[]-]b", true);
	try("abcde", "a*e", true);
	try("[", "[[]", true);
	try("c", "[a-z]", true);
	try("C", "[a-z]", false);
	try("F:sm.heap", "[!F]*", false);
	try("E:sm.err", "[!F]*", true);

	return sm_test_end();
}
OpenPOWER on IntegriCloud