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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/security/contentSecurityPolicy/resources/echo-report.php
diff --git a/LayoutTests/http/tests/security/contentSecurityPolicy/resources/echo-report.php b/LayoutTests/http/tests/security/contentSecurityPolicy/resources/echo-report.php
index 8f81b52019b699fc57a13a1d5b0bf3a6532e3fa5..f0e29a688e0860bcfbe323c8c241966018b794c2 100644
--- a/LayoutTests/http/tests/security/contentSecurityPolicy/resources/echo-report.php
+++ b/LayoutTests/http/tests/security/contentSecurityPolicy/resources/echo-report.php
@@ -1,5 +1,5 @@
<?php
-while (!file_exists("csp-report.txt")) {
+while (!file_exists("csp-report." . $_GET["test"] . ".txt")) {
usleep(10000);
// file_exists() caches results, we want to invalidate the cache.
clearstatcache();
@@ -7,13 +7,13 @@ while (!file_exists("csp-report.txt")) {
echo "<html><body>\n";
echo "CSP report received:";
-$reportFile = fopen("csp-report.txt", 'r');
+$reportFile = fopen("csp-report." . $_GET["test"] . ".txt", 'r');
while ($line = fgets($reportFile)) {
echo "<br>";
echo trim($line);
}
fclose($reportFile);
-unlink("csp-report.txt");
+unlink("csp-report." . $_GET["test"] . ".txt");
echo "<script>";
echo "if (window.testRunner)";
echo " testRunner.notifyDone();";

Powered by Google App Engine
This is Rietveld 408576698