Skip to content

Commit 2ebd125

Browse files
committed
Merge branch 'PHP-8.3' into PHP-8.4
* PHP-8.3: Fix ext/enchant test SKIPIFs
2 parents 3141ad0 + 9187cae commit 2ebd125

26 files changed

+18
-65
lines changed

ext/enchant/tests/broker_dict_exists.phpt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ marcosptf - <[email protected]>
66
enchant
77
--SKIPIF--
88
<?php
9-
if (!is_object(enchant_broker_init())) {die("skip, resource dont load\n");}
10-
if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, no dictionary installed on this machine! \n");}
9+
if (!enchant_broker_list_dicts(enchant_broker_init())) {die("skip no dictionary installed on this machine! \n");}
1110
?>
1211
--FILE--
1312
<?php

ext/enchant/tests/broker_free.phpt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ enchant_broker_free() function
44
marcosptf - <[email protected]>
55
--EXTENSIONS--
66
enchant
7-
--SKIPIF--
8-
<?php
9-
if (!is_object(enchant_broker_init())) {die("skip, resource dont load\n");}
10-
?>
117
--FILE--
128
<?php
139
$broker = enchant_broker_init();

ext/enchant/tests/broker_free_01.phpt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44
marcosptf - <[email protected]>
55
--EXTENSIONS--
66
enchant
7-
--SKIPIF--
8-
<?php
9-
if (!is_object(enchant_broker_init())) {die("skip, resource dont load\n");}
10-
?>
117
--FILE--
128
<?php
139
$broker = enchant_broker_init();

ext/enchant/tests/broker_free_02.phpt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ marcosptf - <[email protected]>
66
enchant
77
--SKIPIF--
88
<?php
9-
if(!is_object(enchant_broker_init())) {die("skip, resource dont load\n");}
10-
if(!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, no dictionary installed on this machine! \n");}
9+
if (!enchant_broker_list_dicts(enchant_broker_init())) {die("skip no dictionary installed on this machine! \n");}
1110
?>
1211
--FILE--
1312
<?php

ext/enchant/tests/broker_free_dict.phpt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ marcosptf - <[email protected]>
66
enchant
77
--SKIPIF--
88
<?php
9-
if(!is_object(enchant_broker_init())) {die("skip, resource dont load\n");}
10-
if(!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, no dictionary installed on this machine! \n");}
9+
if (!enchant_broker_list_dicts(enchant_broker_init())) {die("skip no dictionary installed on this machine! \n");}
1110
?>
1211
--FILE--
1312
<?php

ext/enchant/tests/broker_get_error.phpt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ enchant_broker_get_error() function
44
marcosptf - <[email protected]>
55
--EXTENSIONS--
66
enchant
7-
--SKIPIF--
8-
<?php
9-
if (!is_object(enchant_broker_init())) {die("skip, resource dont load\n");}
10-
?>
117
--FILE--
128
<?php
139
$broker = enchant_broker_init();

ext/enchant/tests/broker_init.phpt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ enchant_broker_init() function
44
marcosptf - <[email protected]>
55
--EXTENSIONS--
66
enchant
7-
--SKIPIF--
8-
<?php
9-
if (!is_object(enchant_broker_init())) {die("skip, resource dont load\n");}
10-
?>
117
--FILE--
128
<?php
139
$broker = enchant_broker_init();

ext/enchant/tests/broker_request_dict.phpt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ marcosptf - <[email protected]>
66
enchant
77
--SKIPIF--
88
<?php
9-
if (!is_object(enchant_broker_init())) {die("skip, resource dont load\n");}
10-
if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, no dictionary installed on this machine! \n");}
9+
if (!enchant_broker_list_dicts(enchant_broker_init())) {die("skip no dictionary installed on this machine! \n");}
1110
?>
1211
--FILE--
1312
<?php

ext/enchant/tests/broker_request_dict_01.phpt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ marcosptf - <[email protected]>
66
enchant
77
--SKIPIF--
88
<?php
9-
if (!is_object(enchant_broker_init())) {die("skip, resource dont load\n");}
10-
if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, no dictionary installed on this machine! \n");}
9+
if (!enchant_broker_list_dicts(enchant_broker_init())) {die("skip no dictionary installed on this machine! \n");}
1110
?>
1211
--FILE--
1312
<?php

ext/enchant/tests/broker_request_dict_error_on_empty_tag.phpt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
enchant_broker_request_dict() must throw ValueError on empty tag
33
--EXTENSIONS--
44
enchant
5-
--SKIPIF--
6-
<?php
7-
if (!is_object(enchant_broker_init())) {die("skip, resource dont load\n");}
8-
?>
95
--FILE--
106
<?php
117
$broker = enchant_broker_init();

0 commit comments

Comments
 (0)