Skip to content

Commit 3d8ed85

Browse files
authored
[skip-ci] ext/standard/tests: use die() instead of echo for 64-bit skip condition (#22247)
1 parent a2114a3 commit 3d8ed85

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)