From 48e12ec78a178f795b258c2e90c77e7fa89b5eb8 Mon Sep 17 00:00:00 2001
From: andrug <andrug@localhost>
Date: Tue, 18 Mar 2008 18:22:14 +0000
Subject: [PATCH] add pre/post configuration phases

---
 opends/tests/system-tests/report/result.xsl |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/opends/tests/system-tests/report/result.xsl b/opends/tests/system-tests/report/result.xsl
index c30bf23..1a348ba 100755
--- a/opends/tests/system-tests/report/result.xsl
+++ b/opends/tests/system-tests/report/result.xsl
@@ -92,12 +92,24 @@
           <xsl:with-param name="phaseName" select="'GenerateLdif'" />
         </xsl:call-template>
       </xsl:when>
+      <xsl:when test="$phaseName = 'preconfiguration'">
+        <a name="preconfiguration"/>
+        <xsl:call-template name="parsePhase">
+          <xsl:with-param name="phaseName" select="'PreConfiguration'" />
+        </xsl:call-template>
+      </xsl:when>
       <xsl:when test="$phaseName = 'configuration'">
         <a name="configuration"/>
         <xsl:call-template name="parsePhase">
           <xsl:with-param name="phaseName" select="'Configuration'" />
         </xsl:call-template>
       </xsl:when>
+      <xsl:when test="$phaseName = 'postconfiguration'">
+        <a name="postconfiguration"/>
+        <xsl:call-template name="parsePhase">
+          <xsl:with-param name="phaseName" select="'PostConfiguration'" />
+        </xsl:call-template>
+      </xsl:when>
       <xsl:when test="$phaseName = 'scheduler'">
         <a name="scheduler"/>
         <xsl:call-template name="parsePhase">

--
Gitblit v1.10.0