Skip to content

Commit 9ce59ef

Browse files
committed
Add to package.xml
1 parent ecc7d81 commit 9ce59ef

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

package.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,10 @@ http://pear.php.net/dtd/package-2.0.xsd">
137137
<file role='test' name='sasl_basic.phpt'/>
138138
<file role='test' name='getserverbykey.phpt'/>
139139
<file role='test' name='gh_155.phpt'/>
140+
<file role='test' name='get_flags.phpt'/>
141+
<file role='test' name='session_lock.phpt'/>
142+
<file role='test' name='session_regenerate.phpt'/>
143+
<file role='test' name='stats.phpt'/>
140144
</dir>
141145
</dir>
142146
</contents>

tests/stats.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ $key = MEMC_SERVER_HOST . ':' . MEMC_SERVER_PORT;
1313
var_dump (count ($stats) === 1);
1414
var_dump (isset ($stats[$key]));
1515
var_dump (count ($stats[$key]) > 0);
16+
var_dump (is_int ($stats[$key]['cmd_get']));
1617

1718
echo "OK";
1819
?>
1920
--EXPECT--
2021
bool(true)
2122
bool(true)
2223
bool(true)
24+
bool(true)
2325
OK

0 commit comments

Comments
 (0)