]> granicus.if.org Git - php/commitdiff
Fix version checks in tests
authorAnatol Belski <ab@php.net>
Fri, 20 Oct 2017 13:23:09 +0000 (15:23 +0200)
committerAnatol Belski <ab@php.net>
Fri, 20 Oct 2017 13:23:09 +0000 (15:23 +0200)
ext/intl/tests/breakiter_getPartsIterator_basic.phpt
ext/intl/tests/breakiter_getPartsIterator_basic2.phpt
ext/intl/tests/breakiter_preceding_basic.phpt
ext/intl/tests/breakiter_preceding_basic2.phpt
ext/intl/tests/dateformat_create_cal_arg_variant4.phpt
ext/intl/tests/dateformat_create_cal_arg_variant5.phpt
ext/intl/tests/dateformat_get_set_calendar_variant4.phpt
ext/intl/tests/dateformat_get_set_calendar_variant5.phpt
ext/intl/tests/uconverter_oop_callback.phpt
ext/intl/tests/uconverter_oop_callback2.phpt

index 58516ea7457b2c7dee6aa2fa93d27d368adaf4d9..bbd6a7e07b60ca9e4d40e897017cecac6cc80e7a 100644 (file)
@@ -4,7 +4,7 @@ IntlBreakIterator::getPartsIterator(): basic test, ICU <= 57.1
 <?php
 if (!extension_loaded('intl'))
        die('skip intl extension not enabled');
-if (version_compare(INTL_ICU_VERSION, '57.1') >= 0) die('skip for ICU <= 57.1');
+if (version_compare(INTL_ICU_VERSION, '57.1') > 0) die('skip for ICU <= 57.1');
 ?>
 --FILE--
 <?php
index c802f963af557dc8031ea3d982d6c7ff9e4dcb12..2bbd9999040f596a372fd561d22e09704d3a86d6 100644 (file)
@@ -4,7 +4,7 @@ IntlBreakIterator::getPartsIterator(): basic test, ICU >= 58.1
 <?php
 if (!extension_loaded('intl'))
        die('skip intl extension not enabled');
-if (version_compare(INTL_ICU_VERSION, '57.1') < 0) die('skip for ICU >= 58.1');
+if (version_compare(INTL_ICU_VERSION, '57.1') <= 0) die('skip for ICU >= 58.1');
 ?>
 --FILE--
 <?php
index 7ef8804c4f08aa14f4d4ac1231cb4e6946f5a8ed..9cba9b0831d7a20227e5a31a6ee68d5f1e0036ea 100644 (file)
@@ -4,7 +4,7 @@ IntlBreakIterator::preceding(): basic test, ICU <= 57.1
 <?php
 if (!extension_loaded('intl'))
        die('skip intl extension not enabled');
-if (version_compare(INTL_ICU_VERSION, '57.1') >= 0) die('skip for ICU <= 57.1');
+if (version_compare(INTL_ICU_VERSION, '57.1') > 0) die('skip for ICU <= 57.1');
 ?>
 --FILE--
 <?php
index e84e5fc469f62e12ff6a24d4a365676af11c784a..b964365025b06cef4d5b3b14af86fe6e5a4bd711 100644 (file)
@@ -4,7 +4,7 @@ IntlBreakIterator::preceding(): basic test, ICU >= 58.1
 <?php
 if (!extension_loaded('intl'))
        die('skip intl extension not enabled');
-if (version_compare(INTL_ICU_VERSION, '57.1') < 0) die('skip for ICU >= 58.1');
+if (version_compare(INTL_ICU_VERSION, '57.1') <= 0) die('skip for ICU >= 58.1');
 --FILE--
 <?php
 ini_set("intl.error_level", E_WARNING);
index 4796b93abdfd504477d1fb38ff286bdd1ce4c4f0..861ee51965201b3d37cd9082d4e04746604c2a3d 100644 (file)
@@ -4,7 +4,7 @@ IntlDateFormatter: several forms of the calendar arg
 <?php
 if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?>
 <?php if (version_compare(INTL_ICU_VERSION, '54.1') < 0) die('skip for ICU >= 54.1'); ?>
-<?php if (version_compare(INTL_ICU_VERSION, '57.1') >= 0) die('skip for ICU <= 57.1'); ?>
+<?php if (version_compare(INTL_ICU_VERSION, '58.1') >= 0) die('skip for ICU <= 57.1'); ?>
 --FILE--
 <?php
 ini_set("intl.error_level", E_WARNING);
index b42d0b3dada3a93bca2ae41c9e900c638f52bc99..1b61df82f04372bdcde90c4eaa87cd7c0e073d41 100644 (file)
@@ -3,8 +3,7 @@ IntlDateFormatter: several forms of the calendar arg
 --SKIPIF--
 <?php
 if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?>
-<?php if (version_compare(INTL_ICU_VERSION, '54.1') < 0) die('skip for ICU >= 54.1'); ?>
-<?php if (version_compare(INTL_ICU_VERSION, '57.1') < 0) die('skip for ICU >= 58.1'); ?>
+<?php if (version_compare(INTL_ICU_VERSION, '58.1') < 0) die('skip for ICU >= 58.1'); ?>
 --FILE--
 <?php
 ini_set("intl.error_level", E_WARNING);
index 884f46980d7273a924183947c9b1642816b3bd14..1d9ab7ecf5a7dd2ca93946e56c0ce4e83156d303 100644 (file)
@@ -4,7 +4,7 @@ IntlDateFormatter: setCalendar()/getCalendar()/getCalendarObject()
 <?php
 if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?>
 <?php if (version_compare(INTL_ICU_VERSION, '54.1') < 0) die('skip for ICU >= 54.1'); ?>
-<?php if (version_compare(INTL_ICU_VERSION, '57.1') >= 0) die('skip for ICU <= 57.1'); ?>
+<?php if (version_compare(INTL_ICU_VERSION, '58.1') >= 0) die('skip for ICU <= 57.1'); ?>
 --FILE--
 <?php
 ini_set("intl.error_level", E_WARNING);
index de16dc89b39000599161c2990df9830ce5cd1ea3..43e9a8516b024f32a3549f9268b5791433940fcd 100644 (file)
@@ -3,8 +3,7 @@ IntlDateFormatter: setCalendar()/getCalendar()/getCalendarObject()
 --SKIPIF--
 <?php
 if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?>
-<?php if (version_compare(INTL_ICU_VERSION, '54.1') < 0) die('skip for ICU >= 54.1'); ?>
-<?php if (version_compare(INTL_ICU_VERSION, '57.1') < 0) die('skip for ICU >= 58.1'); ?>
+<?php if (version_compare(INTL_ICU_VERSION, '58.1') < 0) die('skip for ICU >= 58.1'); ?>
 --FILE--
 <?php
 ini_set("intl.error_level", E_WARNING);
index 9e79b543b2a270de605f2d33705d2745af02a16f..4c31babf86f4164060239d7f1766b3be3d10db1f 100644 (file)
@@ -2,7 +2,7 @@
 UConverter::convert() w/ Callback Reasons
 --SKIPIF--
 <?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
-<?php if (version_compare(INTL_ICU_VERSION, '57.1') >= 0) die('skip for ICU <= 57.1'); ?>
+<?php if (version_compare(INTL_ICU_VERSION, '58.1') >= 0) die('skip for ICU <= 57.1'); ?>
 --FILE--
 <?php
 class MyConverter extends UConverter {
index dba70be4604bf61e3ee2faadb7ba8849c36df166..aaa4db0c9a07023e215122c2609c0c97e1db5936 100644 (file)
@@ -2,7 +2,7 @@
 UConverter::convert() w/ Callback Reasons
 --SKIPIF--
 <?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
-<?php if (version_compare(INTL_ICU_VERSION, '57.1') < 0) die('skip for ICU >= 58.1'); ?>
+<?php if (version_compare(INTL_ICU_VERSION, '58.1') < 0) die('skip for ICU >= 58.1'); ?>
 --FILE--
 <?php
 class MyConverter extends UConverter {