Bug 451810 - Add reminder that "Missing files, if any, are not displayed
on this page"
diff --git a/bundles/org.eclipse.build.tools/src/org/eclipse/releng/generators/TestResultsGenerator.java b/bundles/org.eclipse.build.tools/src/org/eclipse/releng/generators/TestResultsGenerator.java
index 08c9a50..3b9bb12 100644
--- a/bundles/org.eclipse.build.tools/src/org/eclipse/releng/generators/TestResultsGenerator.java
+++ b/bundles/org.eclipse.build.tools/src/org/eclipse/releng/generators/TestResultsGenerator.java
@@ -251,9 +251,10 @@
     // Location and name of test manifest file
     public String           testManifestFileName;
 
-    // temporary way to force "missing" list not to be printed (until complete solution found)
-    private boolean doMissingList = true;
-    
+    // temporary way to force "missing" list not to be printed (until complete
+    // solution found)
+    private boolean         doMissingList             = true;
+
     // Initialize the prefix to a default string
     private String          prefix                    = "default";
 
@@ -1172,6 +1173,16 @@
                         + " (file missing)");
                 missingCount++;
             }
+        } else {
+            replaceString = replaceString
+                    + "<tbody>\n"
+                    + "<tr><td colspan=\"*\"><p><span class=\"footnote\">(NOTE)</span>\n"
+                    + "<br />\n"
+                    + "Remember that for performance unit test tables, there are never any \"missing files\" listed, if there are any.\n"
+                    + "This is expected to be a temporary solution, until an exact fix can be implemented. For more details, see \n"
+                    + "<a href=\"https://bugs.eclipse.org/bugs/show_bug.cgi?id=451890\">bug 451890</a>.</p>\n" 
+                    + "</td></tr>\n" 
+                    + "</tbody>\n";
         }
         return replaceString;
     }
@@ -1269,12 +1280,10 @@
         this.testsConfig = testsConfig;
     }
 
-    
     public boolean getDoMissingList() {
         return doMissingList;
     }
 
-    
     public void setDoMissingList(boolean doMissingList) {
         this.doMissingList = doMissingList;
     }