Fix gh-issue #7
[m6w6/ext-http] / tests / etag001.phpt
index 40b578dae52052c65b67f44ca4d065c9471a891f..c1e1e44c897a92587198dcab8fd16bb1bf156703 100644 (file)
@@ -1,14 +1,22 @@
 --TEST--
 etags with hash
 --SKIPIF--
-<?php include "skipif.inc"; ?>
---EXTENSIONS--
-hash
+<?php 
+include "skipif.inc"; 
+_ext("hash"); 
+version_compare(PHP_VERSION, "5.4.0", ">=") or die("skip PHP>=5.4 required");
+?>
 --FILE--
 <?php
 $body = new http\Message\Body;
 $body->append("Hello, my old fellow.");
 foreach (hash_algos() as $algo) {
+    switch ($algo) {
+    case "gost-crypto":
+    case "fnv1a32":
+    case "fnv1a64":
+        continue 2;
+    }
     ini_set("http.etag.mode", $algo);
     printf("%10s: %s\n", 
         $algo,