1--TEST--
2Test curl_multi_select()
3--CREDITS--
4Ivo Jansch <ivo@ibuildings.com>
5#testfest Utrecht 2009
6--EXTENSIONS--
7curl
8--FILE--
9<?php
10
11//create the multiple cURL handle
12$mh = curl_multi_init();
13echo curl_multi_select($mh)."\n";
14
15curl_multi_close($mh);
16?>
17--EXPECTF--
18%r(0|-1)%r
19