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
|
[FileSystemSyncAccessHandle-close.https.tentative.worker.html]
expected:
if (os == "win") and not debug and (processor == "x86"): [OK, TIMEOUT]
if (os == "linux") and not debug and fission: [OK, CRASH]
[SyncAccessHandle.close is idempotent]
expected:
if not debug and (os == "win") and (processor == "x86"): [PASS, TIMEOUT]
if not debug and (os == "win") and (processor == "x86_64"): PASS
if debug: PASS
[PASS, FAIL]
[SyncAccessHandle.read fails after SyncAccessHandle.close]
expected:
if not debug and (os == "win") and (processor == "x86_64"): PASS
if not debug and (os == "win") and (processor == "x86"): [PASS, NOTRUN]
if debug: PASS
[PASS, FAIL]
[SyncAccessHandle.write fails after SyncAccessHandle.close]
expected:
if not debug and (os == "win") and (processor == "x86"): [PASS, NOTRUN]
if not debug and (os == "win") and (processor == "x86_64"): PASS
if debug: PASS
[PASS, FAIL]
[SyncAccessHandle.flush fails after SyncAccessHandle.close]
expected:
if not debug and (os == "win") and (processor == "x86"): [PASS, NOTRUN]
if not debug and (os == "win") and (processor == "x86_64"): PASS
if debug: PASS
[PASS, FAIL]
[SyncAccessHandle.getSize fails after SyncAccessHandle.close]
expected:
if not debug and (os == "win") and (processor == "x86"): [PASS, NOTRUN]
if not debug and (os == "win") and (processor == "x86_64"): PASS
if debug: PASS
[PASS, FAIL]
[SyncAccessHandle.truncate fails after SyncAccessHandle.handle.close]
expected:
if not debug and (os == "win") and (processor == "x86_64"): PASS
if not debug and (os == "win") and (processor == "x86"): [PASS, NOTRUN]
if debug: PASS
[PASS, FAIL]
|