blob: 6f7751b08f2c89c01b5fe0a1a8e295b233f54041 (
plain)
1
2
3
4
5
6
7
8
9
10
|
[fetch-sw.https.html]
expected:
if (os == "win") and debug and (processor == "x86"): [OK, TIMEOUT, CRASH]
if (os == "win") and not debug and (processor == "x86"): [OK, TIMEOUT]
if (os == "win") and not debug and (processor == "x86_64"): [OK, TIMEOUT]
[Second fetch returns same response]
expected:
if (os == "win") and not swgl and not debug and (processor == "x86_64"): [PASS, TIMEOUT]
if (os == "win") and not swgl and not debug and (processor == "x86"): [PASS, TIMEOUT]
if (os == "win") and not swgl and debug: [PASS, TIMEOUT]
|