* Add an XSLT stylesheet to parse the RSS file from Peter Holm's
Kernel Stress Test Suite and generate HTML of a list of panics with short description and link to the console output. * Add makefile glue to fetch the RSS file, parse it with stress.xslt, and generate a temporary HTML file stress.html * Add a table of contents to the todo list, and add a new section for open kernel stress test issues, and include stress.html there. Discussed with: Peter Holm / re
This commit is contained in:
parent
43bea0780a
commit
acad7b036d
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=25167
3 changed files with 70 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
# $FreeBSD: www/en/releases/6.0R/Makefile,v 1.2 2005/06/10 14:23:55 kensmith Exp $
|
||||
# $FreeBSD: www/en/releases/6.0R/Makefile,v 1.3 2005/06/11 18:46:30 murray Exp $
|
||||
|
||||
.if exists(../Makefile.conf)
|
||||
.include "../Makefile.conf"
|
||||
|
@ -8,7 +8,18 @@
|
|||
.endif
|
||||
|
||||
DOCS= todo.sgml schedule.sgml approvals.sgml
|
||||
FETCHFILE= http://people.freebsd.org/~pho/stress/log/news.rdf
|
||||
FETCHCMD= /usr/bin/fetch
|
||||
CLEANFILES+= news.rdf stress.html
|
||||
|
||||
DATA= docbook.css
|
||||
|
||||
news.rdf:
|
||||
${FETCHCMD} ${FETCHFILE}
|
||||
|
||||
stress.html: news.rdf stress.xsl
|
||||
${XSLTPROC} stress.xsl news.rdf > stress.html
|
||||
|
||||
todo.html: stress.html
|
||||
|
||||
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|
||||
|
|
31
en/releases/6.0R/stress.xsl
Normal file
31
en/releases/6.0R/stress.xsl
Normal file
|
@ -0,0 +1,31 @@
|
|||
<!-- $FreeBSD$ -->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
|
||||
exclude-result-prefixes="rdf cvs"
|
||||
version="1.0">
|
||||
|
||||
<xsl:output
|
||||
method="html"
|
||||
indent="no"
|
||||
encoding="utf-8"/>
|
||||
|
||||
<!-- match first element whether we're using namespaces or not -->
|
||||
|
||||
<xsl:template match="/*[1]">
|
||||
<xsl:comment>Generated from XSLT</xsl:comment>
|
||||
<ul>
|
||||
<xsl:for-each select="*[local-name()='item']">
|
||||
<li>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href"><xsl:value-of select="*[local-name()='link']"/></xsl:attribute>
|
||||
<xsl:value-of select="*[local-name()='title']"/>
|
||||
</xsl:element>
|
||||
</li>
|
||||
</xsl:for-each>
|
||||
</ul>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" [
|
||||
<!ENTITY base CDATA "../..">
|
||||
<!ENTITY email 'freebsd-qa'>
|
||||
<!ENTITY date "$FreeBSD: www/en/releases/6.0R/todo.sgml,v 1.16 2005/07/11 15:24:08 brueffer Exp $">
|
||||
<!ENTITY date "$FreeBSD: www/en/releases/6.0R/todo.sgml,v 1.17 2005/07/14 11:42:06 glebius Exp $">
|
||||
<!ENTITY title "FreeBSD 6.0 Open Issues">
|
||||
<!ENTITY % includes SYSTEM "../../includes.sgml"> %includes;
|
||||
<!ENTITY % developers SYSTEM "../../developers.sgml"> %developers;
|
||||
|
@ -16,6 +16,8 @@
|
|||
<!ENTITY url.cvsweb "http://www.freebsd.org/cgi/cvsweb.cgi">
|
||||
<!ENTITY url.mid "http://docs.freebsd.org/cgi/mid.cgi?">
|
||||
<!ENTITY url.pr "http://www.freebsd.org/cgi/query-pr.cgi?">
|
||||
|
||||
<!ENTITY stresstest SYSTEM "./stress.html">
|
||||
]>
|
||||
|
||||
<!--
|
||||
|
@ -30,14 +32,22 @@
|
|||
<html>
|
||||
&header;
|
||||
|
||||
<h1>Open Issues</h1>
|
||||
|
||||
<p>This is a list of open issues that need to be resolved for FreeBSD
|
||||
6.0. If you have any updates for this list, please e-mail
|
||||
re@FreeBSD.org.</p>
|
||||
|
||||
<ul>
|
||||
<li><a href="#showstopper">Show stopper defects</a></li>
|
||||
<li><a href="#required">Required features</a></li>
|
||||
<li><a href="#desired">Desired features</a></li>
|
||||
<li><a href="#docs">Documentation Items</a></li>
|
||||
<li><a href="#testing">Testing foci</a></li>
|
||||
<li><a href="#stresstest">Problems Discovered by Kernel Stress Test Suite</a></li>
|
||||
</ul>
|
||||
|
||||
<h3>Show stopper defects for 6.0-RELEASE</h3>
|
||||
|
||||
<a name="showstopper"></a>
|
||||
<table class="tasklist" border="3" cellpadding="5" cellspacing="0" width="100%">
|
||||
<tr class="heading">
|
||||
<th>Issue</th>
|
||||
|
@ -109,6 +119,7 @@
|
|||
|
||||
<h3>Required features for 6.0-RELEASE</h3>
|
||||
|
||||
<a name="required"></a>
|
||||
<table class="tasklist" border="3" cellpadding="5" cellspacing="0" width="100%">
|
||||
<tr class="heading">
|
||||
<th>Issue</th>
|
||||
|
@ -138,6 +149,7 @@
|
|||
|
||||
<h3>Desired features for 6.0-RELEASE</h3>
|
||||
|
||||
<a name="desired"></a>
|
||||
<table class="tasklist" border="3" cellpadding="5" cellspacing="0" width="100%">
|
||||
<tr class="heading">
|
||||
<th>Issue</th>
|
||||
|
@ -234,6 +246,7 @@
|
|||
|
||||
<h3>Documentation items that must be resolved for 6.0</h3>
|
||||
|
||||
<a name="docs"></a>
|
||||
<table class="tasklist" border="3" cellpadding="5" cellspacing="0" width="100%">
|
||||
<tr class="heading">
|
||||
<th>Issue</th>
|
||||
|
@ -265,6 +278,7 @@
|
|||
|
||||
<h3>Testing focuses for 6.0-RELEASE</h3>
|
||||
|
||||
<a name="testing"></a>
|
||||
<table class="tasklist" border="3" cellpadding="5" cellspacing="0" width="100%">
|
||||
<tr class="heading">
|
||||
<th>Issue</th>
|
||||
|
@ -312,6 +326,16 @@
|
|||
|
||||
</table>
|
||||
|
||||
<h3>Stress Test Panics</h3>
|
||||
|
||||
<a name="stresstest"></a>
|
||||
<p>The system is continuously being subjected to Peter Holm's <a
|
||||
href="http://www.holm.cc/stress/">Kernel Stress Test Suite</a>. The
|
||||
following issues have recently been discovered from this test
|
||||
suite.</p>
|
||||
|
||||
&stresstest;
|
||||
|
||||
&footer;
|
||||
|
||||
</body>
|
||||
|
|
Loading…
Reference in a new issue