Title: [203185] trunk/Websites/test-results
Revision
203185
Author
[email protected]
Date
2016-07-13 13:33:33 -0700 (Wed, 13 Jul 2016)

Log Message

Update results-safari config.

Added Paths


Diff

Added: trunk/Websites/test-results/php.ini (0 => 203185)


--- trunk/Websites/test-results/php.ini	                        (rev 0)
+++ trunk/Websites/test-results/php.ini	2016-07-13 20:33:33 UTC (rev 203185)
@@ -0,0 +1 @@
+memory_limit = 256M;
\ No newline at end of file

Added: trunk/Websites/test-results/public/api/update-flakiness.php (0 => 203185)


--- trunk/Websites/test-results/public/api/update-flakiness.php	                        (rev 0)
+++ trunk/Websites/test-results/public/api/update-flakiness.php	2016-07-13 20:33:33 UTC (rev 203185)
@@ -0,0 +1,18 @@
+<?php
+
+include('../include/admin-header.php');
+include('../include/test-results.php');
+
+$build_id = intval($_GET['build']);
+
+$start_time = microtime(true);
+$affected_rows = update_flakiness_after_inserting_build($db, $build_id);
+$total_time = microtime(true) - $start_time;
+if ($total_time === NULL)
+    notice('Build not found');
+else
+    echo "Updated $affected_rows rows for build $build_id in $total_time seconds";
+
+include('../include/admin-footer.php');
+
+?>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to