Преглед изворни кода

Linux: added note to HTML page that a proper <limits> header is being used

[SVN r8307]
Jens Maurer пре 25 година
родитељ
комит
792136f32e
1 измењених фајлова са 4 додато и 1 уклоњено
  1. 4 1
      libs/regrtest.py

+ 4 - 1
libs/regrtest.py

@@ -246,7 +246,10 @@ if  program_arg=="*":
 else:
   compile( program_arg )
 
-f.write( "</table>\n</body>\n</html>\n"  )
+f.write( "</table>\n" );
+if sys.platform == "linux2":
+  f.write( "<p>\nNote: A hand-crafted &lt;limits&gt; Standard header has been applied to all configurations.\n" )
+f.write( "</body>\n</html>\n" )
 
 # end
 

粤ICP备19079148号