Changeset 235338 in webkit


Ignore:
Timestamp:
Aug 24, 2018 4:33:30 PM (6 years ago)
Author:
mmaxfield@apple.com
Message:

Unreviewed test fix after r235249
https://bugs.webkit.org/show_bug.cgi?id=178981

  • WebGPUShadingLanguageRI/Test.js:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r235323 r235338  
     12018-08-24  Myles C. Maxfield  <mmaxfield@apple.com>
     2
     3        Unreviewed test fix after r235249
     4        https://bugs.webkit.org/show_bug.cgi?id=178981
     5
     6        * WebGPUShadingLanguageRI/Test.js:
     7
    182018-08-24  Alex Christensen  <achristensen@webkit.org>
    29
  • trunk/Tools/WebGPUShadingLanguageRI/Test.js

    r235249 r235338  
    221221        }
    222222    `);
    223     checkInt(program, callFunction(program, "foo", [], [makeInt(program, 767)]), 5);
    224     checkInt(program, callFunction(program, "foo", [], [makeInt(program, 2)]), 4);
    225     checkInt(program, callFunction(program, "bar", [], [makeInt(program, 2)]), 7);
    226     checkInt(program, callFunction(program, "bar", [], [makeInt(program, 8)]), 1);
    227     checkInt(program, callFunction(program, "baz", [], [makeInt(program, 8)]), 11);
    228     checkInt(program, callFunction(program, "baz", [], [makeInt(program, 9)]), 11);
    229     checkInt(program, callFunction(program, "baz", [], [makeInt(program, 10)]), 14);
    230     checkInt(program, callFunction(program, "baz", [], [makeInt(program, 11)]), 14);
    231     checkInt(program, callFunction(program, "baz", [], [makeInt(program, 12)]), 15);
    232     checkInt(program, callFunction(program, "baz", [], [makeInt(program, 13)]), 15);
    233     checkInt(program, callFunction(program, "quux", [], [makeInt(program, 14)]), 14);
     223    checkInt(program, callFunction(program, "foo", [makeInt(program, 767)]), 5);
     224    checkInt(program, callFunction(program, "foo", [makeInt(program, 2)]), 4);
     225    checkInt(program, callFunction(program, "bar", [makeInt(program, 2)]), 7);
     226    checkInt(program, callFunction(program, "bar", [makeInt(program, 8)]), 1);
     227    checkInt(program, callFunction(program, "baz", [makeInt(program, 8)]), 11);
     228    checkInt(program, callFunction(program, "baz", [makeInt(program, 9)]), 11);
     229    checkInt(program, callFunction(program, "baz", [makeInt(program, 10)]), 14);
     230    checkInt(program, callFunction(program, "baz", [makeInt(program, 11)]), 14);
     231    checkInt(program, callFunction(program, "baz", [makeInt(program, 12)]), 15);
     232    checkInt(program, callFunction(program, "baz", [makeInt(program, 13)]), 15);
     233    checkInt(program, callFunction(program, "quux", [makeInt(program, 14)]), 14);
    234234    checkFail(
    235235        () => doPrep(`
Note: See TracChangeset for help on using the changeset viewer.