-
Notifications
You must be signed in to change notification settings - Fork 174
/
Makefile
100 lines (93 loc) · 5.33 KB
/
Makefile
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Compiler to use - can be replaced by clang for instance
CC := gcc
# Number of random text expressions to generate, for random testing
NRAND_TESTS := 1000
# Flags to pass to compiler
CFLAGS := -O3 -Wall -Wextra -std=c99 -I.
all:
@$(CC) $(CFLAGS) re.c tests/test1.c -o tests/test1
@$(CC) $(CFLAGS) re.c tests/test2.c -o tests/test2
@$(CC) $(CFLAGS) re.c tests/test_rand.c -o tests/test_rand
@$(CC) $(CFLAGS) re.c tests/test_rand_neg.c -o tests/test_rand_neg
@$(CC) $(CFLAGS) re.c tests/test_compile.c -o tests/test_compile
clean:
@rm -f tests/test1 tests/test2 tests/test_rand tests/test_compile
@#@$(foreach test_bin,$(TEST_BINS), rm -f $(test_bin) ; )
@rm -f a.out
@rm -f *.o
test: all
@$(test python)
@echo
@echo Testing hand-picked regex\'s:
@./tests/test1
@echo Testing handling of invalid regex patterns
@./tests/test_compile
@echo Testing patterns against $(NRAND_TESTS) random strings matching the Python implementation and comparing:
@echo
@python ./scripts/regex_test.py \\d+\\w?\\D\\d $(NRAND_TESTS)
@python ./scripts/regex_test.py \\s+[a-zA-Z0-9?]* $(NRAND_TESTS)
@python ./scripts/regex_test.py \\w*\\d?\\w\\? $(NRAND_TESTS)
@python ./scripts/regex_test.py [^\\d]+\\\\?\\s $(NRAND_TESTS)
@python ./scripts/regex_test.py [^\\w][^-1-4] $(NRAND_TESTS)
@python ./scripts/regex_test.py [^\\w] $(NRAND_TESTS)
@python ./scripts/regex_test.py [^1-4] $(NRAND_TESTS)
@python ./scripts/regex_test.py [^-1-4] $(NRAND_TESTS)
@python ./scripts/regex_test.py [^\\d]+\\s?[\\w]* $(NRAND_TESTS)
@python ./scripts/regex_test.py a+b*[ac]*.+.*.[\\.]. $(NRAND_TESTS)
@python ./scripts/regex_test.py a?b[ac*]*.?[\\]+[?]? $(NRAND_TESTS)
@python ./scripts/regex_test.py [-1-5]+[-1-2]-[-] $(NRAND_TESTS)
@python ./scripts/regex_test.py [-1-3]-[-]+ $(NRAND_TESTS)
@python ./scripts/regex_test.py [1-5]+[-1-2]-[\\-] $(NRAND_TESTS)
@python ./scripts/regex_test.py [-1-2]* $(NRAND_TESTS)
@python ./scripts/regex_test.py \\s?[a-fKL098]+-? $(NRAND_TESTS)
@python ./scripts/regex_test.py [\\-]* $(NRAND_TESTS)
@python ./scripts/regex_test.py [\\\\]+ $(NRAND_TESTS)
@python ./scripts/regex_test.py [0-9a-fA-F]+ $(NRAND_TESTS)
@python ./scripts/regex_test.py [1379][2468][abcdef] $(NRAND_TESTS)
@python ./scripts/regex_test.py [012345-9]?[0123-789] $(NRAND_TESTS)
@python ./scripts/regex_test.py [012345-9] $(NRAND_TESTS)
@python ./scripts/regex_test.py [0-56789] $(NRAND_TESTS)
@python ./scripts/regex_test.py [abc-zABC-Z] $(NRAND_TESTS)
@python ./scripts/regex_test.py [a\d]?1234 $(NRAND_TESTS)
@python ./scripts/regex_test.py .*123faerdig $(NRAND_TESTS)
@python ./scripts/regex_test.py .?\\w+jsj $(NRAND_TESTS)
@python ./scripts/regex_test.py [?to][+to][?ta][*ta] $(NRAND_TESTS)
@python ./scripts/regex_test.py \\d+ $(NRAND_TESTS)
@python ./scripts/regex_test.py [a-z]+ $(NRAND_TESTS)
@python ./scripts/regex_test.py \\s+[a-zA-Z0-9?]* $(NRAND_TESTS)
@python ./scripts/regex_test.py \\w $(NRAND_TESTS)
@python ./scripts/regex_test.py \\d $(NRAND_TESTS)
@python ./scripts/regex_test.py [\\d] $(NRAND_TESTS)
@python ./scripts/regex_test.py [^\\d] $(NRAND_TESTS)
@python ./scripts/regex_test.py [^-1-4] $(NRAND_TESTS)
@echo
@echo
@echo
@echo Testing rejection of patterns against $(NRAND_TESTS) random strings also rejected by the Python implementation:
@echo
@python ./scripts/regex_test_neg.py \\d+ $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py [a-z]+ $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py \\s+[a-zA-Z0-9?]* $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py ^\\w $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py ^\\d $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py [\\d] $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py ^[^\\d] $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py [^\\w]+ $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py ^[\\w]+ $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py ^[^0-9] $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py [a-z].[A-Z] $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py [-1-3]-[-]+ $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py [1-5]+[-1-2]-[\\-] $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py [-0-9]+ $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py [\\-]+ $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py [\\\\]+ $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py [0-9a-fA-F]+ $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py [1379][2468][abcdef] $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py [012345-9] $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py [0-56789] $(NRAND_TESTS)
@python ./scripts/regex_test_neg.py .*123faerdig $(NRAND_TESTS)
@echo
@echo
@./tests/test2
@echo
@echo