Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: LayoutTests/http/tests/security/contentSecurityPolicy/resources/echo-report.php

Issue 23172003: Improve parallelization of CSP and XSSAuditor reporting tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <?php 1 <?php
2 while (!file_exists("csp-report.txt")) { 2 while (!file_exists("csp-report." . $_GET["test"] . ".txt")) {
3 usleep(10000); 3 usleep(10000);
4 // file_exists() caches results, we want to invalidate the cache. 4 // file_exists() caches results, we want to invalidate the cache.
5 clearstatcache(); 5 clearstatcache();
6 } 6 }
7 7
8 echo "<html><body>\n"; 8 echo "<html><body>\n";
9 echo "CSP report received:"; 9 echo "CSP report received:";
10 $reportFile = fopen("csp-report.txt", 'r'); 10 $reportFile = fopen("csp-report." . $_GET["test"] . ".txt", 'r');
11 while ($line = fgets($reportFile)) { 11 while ($line = fgets($reportFile)) {
12 echo "<br>"; 12 echo "<br>";
13 echo trim($line); 13 echo trim($line);
14 } 14 }
15 fclose($reportFile); 15 fclose($reportFile);
16 unlink("csp-report.txt"); 16 unlink("csp-report." . $_GET["test"] . ".txt");
17 echo "<script>"; 17 echo "<script>";
18 echo "if (window.testRunner)"; 18 echo "if (window.testRunner)";
19 echo " testRunner.notifyDone();"; 19 echo " testRunner.notifyDone();";
20 echo "</script>"; 20 echo "</script>";
21 echo "</body></html>"; 21 echo "</body></html>";
22 ?> 22 ?>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698