blob: 916875238aa99d022e70cc37b5da498b2a2171e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[keygenerator.htm]
expected:
if (os == "win") and not debug and (processor == "x86"): [OK, TIMEOUT]
if (os == "android") and fission: [OK, TIMEOUT]
[Keygenerator - starts at one, and increments by one]
expected:
if (processor == "x86") and not debug and (os == "linux"): [PASS, NOTRUN]
if (processor == "x86") and not debug and (os == "win"): [PASS, NOTRUN]
[Keygenerator - increments by one from last set key]
expected:
if (processor == "x86") and not debug and (os == "linux"): [PASS, NOTRUN]
if (processor == "x86") and not debug and (os == "win"): [PASS, NOTRUN]
[Keygenerator - don't increment when new key is not bigger than current]
expected:
if (processor == "x86") and not debug and (os == "linux"): [PASS, NOTRUN]
if (processor == "x86") and not debug and (os == "win"): [PASS, NOTRUN]
|