Skip to content

Commit d2c2698

Browse files
committed
ext/standard/tests: use die() instead of echo for 64-bit skip condition
1 parent c701c57 commit d2c2698

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ext/standard/tests/GHSA-96wq-48vp-hh57.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ memory_limit=3G
88
<?php
99
if (!getenv('RUN_RESOURCE_HEAVY_TESTS')) die('skip resource-heavy test');
1010
if (getenv('SKIP_SLOW_TESTS')) die('skip slow test');
11-
if (PHP_INT_SIZE != 8) echo 'skip 64-bit only';
11+
if (PHP_INT_SIZE != 8) die('skip 64-bit only');
1212
?>
1313
--FILE--
1414
<?php

0 commit comments

Comments
 (0)