branch off v1 as R_1_7
[m6w6/ext-http] / tests / etag_mode_031.phpt
index 29a70804d965fa4818ec12704e6e58a63a848b58..5f7233836993bfd971e3614d5e52e2000e76e710 100644 (file)
@@ -1,23 +1,23 @@
 --TEST--
-crc32 etag
+crc32 etag (may fail because PHPs crc32 is actually crc32b)
 --SKIPIF--
 <?php
 include 'skip.inc';
 checkcgi();
-checkmin(5.1);
+checkmin("5.2.5");
 ?>
 --FILE--
 <?php
-ini_set('http.etag_mode', 'crc32');
+ini_set('http.etag.mode', extension_loaded('hash')?'crc32b':'crc32');
 http_cache_etag();
 http_send_data("abc\n");
 ?>
 --EXPECTF--
-X-Powered-By: PHP/%s
+X-Powered-By: PHP/%a
 Cache-Control: private, must-revalidate, max-age=0
 Accept-Ranges: bytes
 ETag: "4e818847"
 Content-Length: 4
-Content-type: %s
+Content-type: %a
 
 abc