Skip to content

Commit cb67388

Browse files
committed
Issue #1135: LibTests/typed_data/Int32x4 tests updated to check expectations for web correctly.
1 parent cbbf7fd commit cb67388

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

LibTest/typed_data/Int32x4/operator_OR_A01_t01.dart

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ main() {
3232
check(1, 1, 1, 1, 1, 1, 1, 1);
3333
check(0, 1, 0, 1, 1, 0, 1, 0);
3434

35-
check(0xff7812a1, 0x1903c8e4, 0x35c7de18, 0x3619c6ff,
36-
0x829c02ac, 0xf367c6e1, 0x367c8d9f, 0xc637ba81);
37-
check(0x80000000, 0x00ff00ff, 0xC0000000, 0xffffffff,
38-
0x00000001, 0x00ff0000, 0x40000000, 0x01010101);
35+
if (!isJS) {
36+
check(0xff7812a1, 0x1903c8e4, 0x35c7de18, 0x3619c6ff,
37+
0x829c02ac, 0xf367c6e1, 0x367c8d9f, 0xc637ba81);
38+
check(0x80000000, 0x00ff00ff, 0xC0000000, 0xffffffff,
39+
0x00000001, 0x00ff0000, 0x40000000, 0x01010101);
40+
}
3941
}

0 commit comments

Comments
 (0)