Skip to content

Commit f107b67

Browse files
committed
Add skipifs for zmm
1 parent 085ddd0 commit f107b67

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

ext/standard/tests/strings/chunk_split_variation1_32bit.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Test chunk_split() function : usage variations - unexpected large '$end' string
33
--SKIPIF--
44
<?php
55
if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only");
6+
if (getenv("USE_ZEND_ALLOC") === "0") die("skip ZMM is disabled");
67
?>
78
--FILE--
89
<?php

ext/standard/tests/strings/chunk_split_variation3.phpt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
--TEST--
22
Test chunk_split() function : usage variations - unexpected large number of chunks
3+
--SKIPIF--
4+
<?php
5+
if (getenv("USE_ZEND_ALLOC") === "0") die("skip ZMM is disabled");
6+
?>
37
--FILE--
48
<?php
59
/* Prototype : string chunk_split(string $str [, int $chunklen [, string $ending]])

0 commit comments

Comments
 (0)