from libpathod import utils import tutils def test_parse_size(): assert utils.parse_size("100") == 100 assert utils.parse_size("100k") == 100 * 1024 tutils.raises("invalid size spec", utils.parse_size, "foo") tutils.raises("invalid size spec", utils.parse_size, "100kk") def test_parse_anchor_spec(): assert utils.parse_anchor_spec("foo=200") == ("foo", "200") assert utils.parse_anchor_spec("foo") == None def test_data_path(): tutils.raises(ValueError, utils.data.path, "nonexistent") def test_escape_unprintables(): s = "".join([chr(i) for i in range(255)]) e = utils.escape_unprintables(s) assert e.encode('ascii') assert not "PATHOD_MARKER" in e a> : iCE40/abc
[no description]
summaryrefslogtreecommitdiffstats
path: root/src/misc/mvc/mvcDivisor.c
blob: bbdd735f7087e24505d067a740931808f0467d82 (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
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