summary refs log tree commit diff stats
path: root/tinyc/tests/boundtest.c
diff options
context:
space:
mode:
authorDmitry Atamanov <data-man@users.noreply.github.com>2018-06-14 19:34:26 +0300
committerDominik Picheta <dominikpicheta@googlemail.com>2018-06-14 17:34:26 +0100
commitbf5d619a52da04c857a6f7fb3d68afc12182bc22 (patch)
tree5ec3e4a81fbf167ea5ef4cd5d61b8e542c265fe8 /tinyc/tests/boundtest.c
parentf1d5e9090e137348b805b560cc714bb698054b18 (diff)
downloadNim-bf5d619a52da04c857a6f7fb3d68afc12182bc22.tar.gz
Add MemMapFileStream. Fixes in memFiles. (#7944)
* Add MemMapFileStream

* Added tests

* Fixed bug in memfiles (zero index for string)

* Added flush to changelog

* Attempt to fix Win's nuances

* Fix attempt to fix

* Continue...

* And again...

* Reworked tests (all for win on Win)

* Fixes in flush (Win)

* Replace fn vars to consts

* Added the attempts parameter to the flush

* Replace while to for

* Move to memfiles

* Use Natural instead of uint

* Better error messages for append mode. Handle specific cases.
Diffstat (limited to 'tinyc/tests/boundtest.c')
0 files changed, 0 insertions, 0 deletions
/akkartik/mu/blame/build?h=hlt&id=6d6c37feeb72c7ab13276cec7df326f7d8cd1712'>^
6b0166ec ^
a232af2f ^

6acea762 ^
a232af2f ^
93569d9d ^
a232af2f ^




6acea762 ^
a232af2f ^

6acea762 ^
a232af2f ^

9397c4c2 ^






e35c2d68 ^
9397c4c2 ^












a232af2f ^




6acea762 ^
a232af2f ^


79cb6ea5 ^


e35c2d68 ^
79cb6ea5 ^
e35c2d68 ^




79cb6ea5 ^


a232af2f ^
eed2f30e ^
22d93b76 ^
46a3b11c ^

22d93b76 ^
a232af2f ^
6acea762 ^
a232af2f ^



20037b7c ^
e35c2d68 ^

20037b7c ^


3315a7d3 ^
a232af2f ^

e35c2d68 ^
a232af2f ^

e35c2d68 ^
a232af2f ^



6acea762 ^
a232af2f ^

6acea762 ^
a232af2f ^

6acea762 ^
a232af2f ^


38b80618 ^
a232af2f ^




e35c2d68 ^

6acea762 ^

89fd0bf2 ^

49559e00 ^
89fd0bf2 ^
e3a53f3a ^

46a3b11c ^
89fd0bf2 ^
48f6d48a ^
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149