Home | History | Annotate | Download | only in Scripts

Lines Matching full:print

163     print "This script has to be run under Cygwin to function correctly.\n";
204 print "The WEBKIT_TESTFONTS environment variable is not defined.\n";
205 print "You must set it before running the tests.\n";
206 print "Use git to grab the actual fonts from http://gitorious.org/qtwebkit/testfonts\n";
216 print "WARNING: Your platform is not recognized. Any platform-specific results will be generated in platform/undefined.\n";
311 print STDERR $usage;
325 print STDERR "\nWARNING: Running more than 1000 tests at a time with MallocStackLogging enabled may cause a crash.\n\n";
342 print STDERR "Running build-dumprendertree\n";
367 print STDERR "Compiling DumpRenderTree failed!\n";
401 print "Running tests from $testDirectory\n";
403 print "Enabling pixel tests with a tolerance of $tolerance%\n";
405 print "WARNING: Temporarily changing the main display color profile:\n";
406 print "\tThe colors on your screen will change for the duration of the testing.\n";
407 print "\tThis allows the pixel tests to have consistent color values across all machines.\n";
410 print "WARNING: Perian's QuickTime component is installed and this may affect pixel test results!\n";
411 print "\tYou should avoid generating new pixel results in this environment.\n";
412 print "\tSee https://bugs.webkit.org/show_bug.cgi?id=22615 for details.\n";
528 print "Testing ", scalar @tests, " test cases";
529 print " $iterations times" if ($iterations > 1);
530 print ", repeating each test $repeatEach times" if ($repeatEach > 1);
531 print ".\n";
570 print "running epilogue or prologue $logue\n";
572 print OUT "$logue\n";
585 print "running $test -> ";
589 print "\n" unless $atLineStart;
590 print "$dir ";
592 print ".";
621 print OUT "http://127.0.0.1:$httpdPort/$path$suffixExpectedHash\n";
625 print OUT "https://127.0.0.1:$httpdSSLPort/$path$suffixExpectedHash\n";
633 print OUT "$testPath$suffixExpectedHash\n";
643 print OUT "$testPath\n";
649 print STDERR "Error: wss is disabled until all platforms support pyOpenSSL.";
650 # print OUT "https://127.0.0.1:$webSocketSecurePort/$path\n";
652 print OUT "http://127.0.0.1:$webSocketPort/$path\n";
659 print OUT "$errorMessagePath\n";
669 print OUT "$testPath$suffixExpectedHash\n" if defined $testPath;
715 print " $test -> ";
760 print DIFFOUT "Content-Length: $actualPNGSize\n";
761 print DIFFOUT $actualPNG;
763 print DIFFOUT "Content-Length: $expectedPNGSize\n";
764 print DIFFOUT $expectedPNG;
802 print "new " . ($resetResults ? "result" : "test") ."\n";
814 # Always print the file name for new tests, as they will probably need some manual inspection.
817 print "\n" unless $atLineStart;
818 print "$test -> ";
822 print "new (results generated in $resultsDir)\n";
824 print "new\n";
830 print "succeeded\n";
885 print DIFFHTML "<html>\n";
886 print DIFFHTML "<head>\n";
887 print DIFFHTML "<title>$base Image Compare</title>\n";
888 print DIFFHTML "<script language=\"Javascript\" type=\"text/javascript\">\n";
889 print DIFFHTML "var currentImage = 0;\n";
890 print DIFFHTML "var imageNames = new Array(\"Actual\", \"Expected\");\n";
891 print DIFFHTML "var imagePaths = new Array(\"$testName-$actualTag.png\", \"$testName-$expectedTag.png\");\n";
894 print DIFFHTML "imageNames.push(\"W3C\");\n";
895 print DIFFHTML "imagePaths.push(\"$testName-w3c.png\");\n";
897 print DIFFHTML "function animateImage() {\n";
898 print DIFFHTML " var image = document.getElementById(\"animatedImage\");\n";
899 print DIFFHTML " var imageText = document.getElementById(\"imageText\");\n";
900 print DIFFHTML " image.src = imagePaths[currentImage];\n";
901 print DIFFHTML " imageText.innerHTML = imageNames[currentImage] + \" Image\";\n";
902 print DIFFHTML " currentImage = (currentImage + 1) % imageNames.length;\n";
903 print DIFFHTML " setTimeout('animateImage()',2000);\n";
904 print DIFFHTML "}\n";
905 print DIFFHTML "</script>\n";
906 print DIFFHTML "</head>\n";
907 print DIFFHTML "<body onLoad=\"animateImage();\">\n";
908 print DIFFHTML "<table>\n";
910 print DIFFHTML "<tr>\n";
911 print DIFFHTML "<td>Difference between images: <a href=\"$testName-$diffsTag.png\">$diffPercentage%</a></td>\n";
912 print DIFFHTML "</tr>\n";
914 print DIFFHTML "<tr>\n";
915 print DIFFHTML "<td><a href=\"" . toURL("$testDirectory/$test") . "\">test file</a></td>\n";
916 print DIFFHTML "</tr>\n";
917 print DIFFHTML "<tr>\n";
918 print DIFFHTML "<td id=\"imageText\" style=\"text-weight: bold;\">Actual Image</td>\n";
919 print DIFFHTML "</tr>\n";
920 print DIFFHTML "<tr>\n";
921 print DIFFHTML "<td><img src=\"$testName-$actualTag.png\" id=\"animatedImage\"></td>\n";
922 print DIFFHTML "</tr>\n";
923 print DIFFHTML "</table>\n";
924 print DIFFHTML "</body>\n";
925 print DIFFHTML "</html>\n";
947 print "\nExiting early after $failureCount failures. $count tests run.";
980 print "\nWARNING: $totalLeaks total leaks found!\n";
981 print "See above for individual leaks results.\n" if ($leaksOutputFileNumber > 2);
990 print "\n\nThe 10 slowest tests:\n\n";
998 print "\n";
1001 print "The following tests are in the Skipped file (" . File::Spec->abs2rel("$platformTestDirectory/Skipped", $testDirectory) . "), but succeeded:\n";
1003 print " $test\n";
1008 print "all $count test cases succeeded\n";
1018 print HTML "<html>\n";
1019 print HTML "<head>\n";
1020 print HTML "<title>Layout Test Results</title>\n";
1021 print HTML "</head>\n";
1022 print HTML "<body>\n";
1025 print HTML "<h4>Tested with metrics ignored.</h4>";
1028 print HTML htmlForResultsSection(@{$tests{mismatch}}, "Tests where results did not match expected results", \&linksForMismatchTest);
1029 print HTML htmlForResultsSection(@{$tests{timedout}}, "Tests that timed out", \&linksForErrorTest);
1030 print HTML htmlForResultsSection(@{$tests{crash}}, "Tests that caused the DumpRenderTree tool to crash", \&linksForErrorTest);
1031 print HTML htmlForResultsSection(@{$tests{error}}, "Tests that had stderr output", \&linksForErrorTest);
1032 print HTML htmlForResultsSection(@{$tests{new}}, "Tests that had no expected results (probably new)", \&linksForNewTest);
1034 print HTML "</body>\n";
1035 print HTML "</html>\n";
1063 print "\n" unless $atLineStart;
1129 print " ? checking for leaks in $dumpToolName\n";
1138 print " - no leaks found\n";
1147 print " + $adjustedCount leaks ($bytes bytes including $excluded excluded leaks) were found, details in $leaksFilePath\n";
1149 print " + $count leaks ($bytes bytes) were found, details in $leaksFilePath\n";
1164 print NEWFILE $contents;
1343 print;
1428 print STDERR "Timed out waiting for WebSocketServer to start.\n";
1486 print "$listName list contained '$item', but no file of that name could be found\n";
1584 print "\n" unless $atLineStart;
1585 print "$test -> ";
1587 print "$description\n";
1634 print outFH $path . "\n";
1901 print "\nWARNING: $totalLeaks total leaks found for a total of $totalBytes!\n";
1902 print "WARNING: $uniqueLeakCount unique leaks found!\n";
1903 print "See above for individual leaks results.\n" if ($leaksOutputFileNumber > 2);
2072 print "Skipped tests in $name:\n";
2096 print " $skipped\n";
2100 print " $skipped\n";
2139 print "can't run test $test outside $testDirectory\n";
2143 print "test $test does not have a supported extension\n";
2154 print "test $test not found\n";
2220 print $message;