robot tcs, test charts, robot container added
[ta/cloudtaf.git] / resources / test_containers / php-apache / index.php
diff --git a/resources/test_containers/php-apache/index.php b/resources/test_containers/php-apache/index.php
new file mode 100644 (file)
index 0000000..3fe2edc
--- /dev/null
@@ -0,0 +1,7 @@
+<?php
+  $x = 0.0001;
+  for ($i = 0; $i <= 1000000; $i++) {
+    $x += sqrt($x);
+  }
+  echo "OK!";
+?>