summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/meta/webgpu/cts/webgpu/shader/validation/parse/const_assert/cts.https.html.ini
blob: cc73b0df43d477d0b923a2ad0e02ab71661e93d4 (plain)
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
[cts.https.html?q=webgpu:shader,validation,parse,const_assert:parse:*]
  [:case="both_parentheses"]
    expected:
      if os == "win": FAIL
      if os == "linux" and not debug: FAIL
      if os == "mac": FAIL

  [:case="condition_on_newline"]
    expected:
      if os == "win": FAIL
      if os == "linux" and not debug: FAIL
      if os == "mac": FAIL

  [:case="invalid_expression"]
    expected:
      if os == "win" and debug: FAIL

  [:case="left_parenthesis_only"]
    expected:
      if os == "win" and debug: FAIL

  [:case="multiline_with_parentheses"]
    expected:
      if os == "win": FAIL
      if os == "linux" and not debug: FAIL
      if os == "mac": FAIL

  [:case="no_condition_no_parentheses"]
    expected:
      if os == "win" and debug: FAIL

  [:case="no_condition_with_parentheses"]
    expected:
      if os == "win" and debug: FAIL

  [:case="no_parentheses"]
    expected:
      if os == "win": FAIL
      if os == "linux" and not debug: FAIL
      if os == "mac": FAIL

  [:case="not_a_boolean"]
    expected:
      if os == "win" and debug: FAIL

  [:case="right_parenthesis_only"]
    expected:
      if os == "win" and debug: FAIL