|
6 | 6 | if (os == "mac") and not debug: [OK, TIMEOUT]
|
7 | 7 | [write() with a string with windows line ending preserved]
|
8 | 8 | expected:
|
9 |
| - if (os == "win") and debug and (processor == "x86"): [PASS, NOTRUN] |
10 |
| - if (os == "win") and not debug: [NOTRUN, PASS] |
| 9 | + if (processor == "x86_64") and (os == "win") and not debug: [NOTRUN, PASS] |
| 10 | + if processor == "x86": [PASS, NOTRUN] |
11 | 11 |
|
12 | 12 | [write() with an empty array buffer to an empty file]
|
13 | 13 | expected:
|
|
16 | 16 |
|
17 | 17 | [write() with a valid typed array buffer]
|
18 | 18 | expected:
|
19 |
| - if (os == "win") and debug and (processor == "x86"): [PASS, NOTRUN] |
20 |
| - if (os == "win") and not debug: [NOTRUN, PASS] |
| 19 | + if (processor == "x86_64") and (os == "win") and not debug: [NOTRUN, PASS] |
| 20 | + if processor == "x86": [PASS, NOTRUN] |
21 | 21 |
|
22 | 22 | [atomic writes: writable file streams make atomic changes on close]
|
23 | 23 | expected:
|
24 |
| - if (os == "win") and debug and (processor == "x86"): [PASS, NOTRUN] |
25 |
| - if (os == "win") and not debug: [NOTRUN, PASS] |
| 24 | + if (processor == "x86_64") and (os == "win") and not debug: [NOTRUN, PASS] |
| 25 | + if processor == "x86": [PASS, NOTRUN] |
26 | 26 |
|
27 | 27 | [atomic writes: write() after close() fails]
|
28 | 28 | expected:
|
29 |
| - if (os == "win") and debug and (processor == "x86"): [PASS, NOTRUN] |
30 |
| - if (os == "win") and not debug: [NOTRUN, PASS] |
| 29 | + if (processor == "x86_64") and (os == "win") and not debug: [NOTRUN, PASS] |
| 30 | + if processor == "x86": [PASS, NOTRUN] |
31 | 31 |
|
32 | 32 | [atomic writes: truncate() after close() fails]
|
33 | 33 | expected:
|
34 |
| - if (os == "win") and debug and (processor == "x86"): [PASS, NOTRUN] |
35 |
| - if (os == "win") and not debug: [NOTRUN, PASS] |
| 34 | + if (processor == "x86_64") and (os == "win") and not debug: [NOTRUN, PASS] |
| 35 | + if processor == "x86": [PASS, NOTRUN] |
36 | 36 |
|
37 | 37 | [atomic writes: close() after close() fails]
|
38 | 38 | expected:
|
|
79 | 79 |
|
80 | 80 | [write() with an empty blob to an empty file]
|
81 | 81 | expected:
|
| 82 | + if (processor == "x86_64") and (os == "win") and not debug: [PASS, TIMEOUT] |
82 | 83 | if processor == "x86": [PASS, TIMEOUT]
|
83 | 84 |
|
84 | 85 | [write() called with a string and a valid offset after seek]
|
85 | 86 | expected:
|
86 |
| - if (processor == "x86_64") and (os == "win") and not debug: [PASS, NOTRUN] |
| 87 | + if (processor == "x86_64") and (os == "win") and not debug: [NOTRUN, PASS, TIMEOUT] |
87 | 88 | if processor == "x86": [PASS, NOTRUN]
|
88 | 89 |
|
89 | 90 | [an errored writable stream releases its lock]
|
90 | 91 | expected:
|
91 |
| - if (os == "win") and debug and (processor == "x86"): [PASS, NOTRUN] |
92 |
| - if (os == "win") and not debug: [NOTRUN, PASS, TIMEOUT] |
| 92 | + if (processor == "x86_64") and (os == "win") and not debug: [NOTRUN, PASS, TIMEOUT] |
| 93 | + if processor == "x86": [PASS, NOTRUN] |
93 | 94 |
|
94 | 95 | [write() called with a blob and a valid offset]
|
95 | 96 | expected:
|
96 |
| - if (os == "win") and not debug: [PASS, NOTRUN, TIMEOUT] |
97 |
| - if (os == "linux") and (processor == "x86"): [PASS, NOTRUN] |
| 97 | + if (os == "win") and not debug: [NOTRUN, PASS, TIMEOUT] |
98 | 98 |
|
99 | 99 | [write() called with an offset beyond the end of the file]
|
100 | 100 | expected:
|
101 |
| - if (processor == "x86_64") and (os == "win") and not debug: [PASS, NOTRUN] |
102 |
| - if (processor == "x86") and (os == "linux"): [PASS, NOTRUN] |
| 101 | + if (os == "win") and not debug: [NOTRUN, PASS] |
103 | 102 |
|
104 | 103 | [write() with a string with unix line ending preserved]
|
105 | 104 | expected:
|
106 |
| - if (os == "win") and not debug: [NOTRUN, TIMEOUT, PASS] |
| 105 | + if (os == "win") and not debug: [NOTRUN, PASS, TIMEOUT] |
107 | 106 |
|
108 | 107 | [write() with a valid utf-8 string]
|
109 | 108 | expected:
|
110 |
| - if (os == "win") and not debug: [NOTRUN, TIMEOUT, PASS] |
| 109 | + if (os == "win") and not debug: [NOTRUN, PASS, TIMEOUT] |
111 | 110 |
|
112 | 111 | [write() with an empty string to an empty file]
|
113 | 112 | expected:
|
114 | 113 | if (os == "win") and not debug: [NOTRUN, PASS, TIMEOUT]
|
115 | 114 |
|
116 | 115 | [write() called with a string and a valid offset]
|
117 | 116 | expected:
|
118 |
| - if (os == "win") and not debug: [PASS, TIMEOUT, NOTRUN] |
| 117 | + if (os == "win") and not debug: [NOTRUN, PASS, TIMEOUT] |
119 | 118 |
|
120 | 119 | [write() WriteParams without position and blob appends]
|
| 120 | + expected: |
| 121 | + if (os == "win") and not debug: [NOTRUN, PASS] |
| 122 | + |
| 123 | + [write() a blob to an empty file with zero offset] |
| 124 | + expected: |
| 125 | + if (os == "win") and not debug: [PASS, NOTRUN, TIMEOUT] |
| 126 | + |
| 127 | + [write() called consecutively appends] |
| 128 | + expected: |
| 129 | + if (os == "win") and not debug: [PASS, NOTRUN] |
| 130 | + |
| 131 | + [write() WriteParams without position and string appends] |
| 132 | + expected: |
| 133 | + if (os == "win") and not debug: [PASS, NOTRUN] |
| 134 | + |
| 135 | + [write() a string to an empty file with zero offset] |
| 136 | + expected: |
| 137 | + if (os == "win") and not debug: [PASS, NOTRUN] |
| 138 | + |
| 139 | + [write() a blob to an empty file] |
121 | 140 | expected:
|
122 | 141 | if (os == "win") and not debug: [PASS, NOTRUN]
|
123 | 142 |
|
| 143 | + [write() with WriteParams without position to an empty file] |
| 144 | + expected: |
| 145 | + if (os == "win") and not debug: [PASS, TIMEOUT, NOTRUN] |
| 146 | + |
124 | 147 |
|
125 | 148 | [FileSystemWritableFileStream-write.https.any.worker.html]
|
126 | 149 | expected:
|
|
136 | 159 | [write() called with an offset beyond the end of the file]
|
137 | 160 | expected:
|
138 | 161 | if (os == "win") and debug and not swgl: [PASS, NOTRUN]
|
139 |
| - if (os == "win") and not debug: [NOTRUN, PASS, TIMEOUT] |
| 162 | + if (os == "win") and not debug: [NOTRUN, TIMEOUT, PASS] |
140 | 163 | if (os == "android") and not debug: [PASS, FAIL]
|
141 | 164 |
|
142 | 165 | [write() with an empty string to an empty file]
|
|
148 | 171 | [write() with a valid utf-8 string]
|
149 | 172 | expected:
|
150 | 173 | if (os == "win") and debug and not swgl: [PASS, NOTRUN]
|
151 |
| - if (os == "win") and not debug: [NOTRUN, TIMEOUT, PASS] |
| 174 | + if (os == "win") and not debug: [NOTRUN, PASS, TIMEOUT] |
152 | 175 | if (os == "android") and not debug: [PASS, FAIL]
|
153 | 176 |
|
154 | 177 | [write() with a string with unix line ending preserved]
|
|
228 | 251 |
|
229 | 252 | [write() a blob to an empty file]
|
230 | 253 | expected:
|
231 |
| - if (os == "win") and not debug: [PASS, TIMEOUT, NOTRUN] |
| 254 | + if (os == "win") and not debug: [PASS, NOTRUN, TIMEOUT] |
232 | 255 | if (os == "android") and not debug: [PASS, FAIL]
|
233 | 256 |
|
234 | 257 | [write() with WriteParams without position to an empty file]
|
|
238 | 261 |
|
239 | 262 | [write() a string to an empty file with zero offset]
|
240 | 263 | expected:
|
241 |
| - if (os == "win") and not debug: [PASS, TIMEOUT, NOTRUN] |
| 264 | + if (os == "win") and not debug: [PASS, NOTRUN, TIMEOUT] |
242 | 265 | if (os == "android") and not debug: [PASS, FAIL]
|
243 | 266 |
|
244 | 267 | [write() a blob to an empty file with zero offset]
|
|
248 | 271 |
|
249 | 272 | [write() called consecutively appends]
|
250 | 273 | expected:
|
251 |
| - if (os == "win") and not debug: [PASS, NOTRUN, TIMEOUT] |
| 274 | + if (os == "win") and not debug: [NOTRUN, PASS, TIMEOUT] |
252 | 275 | if (os == "android") and not debug: [PASS, FAIL]
|
253 | 276 |
|
254 | 277 | [write() WriteParams without position and string appends]
|
255 | 278 | expected:
|
256 |
| - if (os == "win") and not debug: [PASS, NOTRUN, TIMEOUT] |
| 279 | + if (os == "win") and not debug: [NOTRUN, PASS, TIMEOUT] |
257 | 280 | if (os == "android") and not debug: [PASS, FAIL]
|
258 | 281 |
|
259 | 282 | [write() WriteParams without position and blob appends]
|
260 | 283 | expected:
|
261 | 284 | if (os == "win") and debug and not swgl: [PASS, TIMEOUT]
|
262 |
| - if (os == "win") and not debug: [PASS, NOTRUN, TIMEOUT] |
| 285 | + if (os == "win") and not debug: [NOTRUN, PASS, TIMEOUT] |
263 | 286 | if (os == "android") and not debug: [PASS, FAIL]
|
264 | 287 |
|
265 | 288 | [write() called with a string and a valid offset]
|
|
0 commit comments