Skip to content

Commit 36e2d26

Browse files
committed
restricted test to English locale (fails otherwise)
1 parent 3bd6bb6 commit 36e2d26

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ext/com_dotnet/tests/variants_x64.phpt

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ COM: General variant tests
33
--SKIPIF--
44
<?php # vim:ft=php
55
if (!extension_loaded("com_dotnet")) print "skip COM/.Net support not present";
6-
if (8 != PHP_INT_SIZE) print "skip x64 only"; ?>
6+
if (8 != PHP_INT_SIZE) print "skip x64 only";
7+
if ((string) variant_cat(new VARIANT(false), new VARIANT(0.5)) != 'False0.5')
8+
print "skip English locale only";
9+
?>
710
--FILE--
811
<?php // $Id$
912
error_reporting(E_ALL);

0 commit comments

Comments
 (0)