Skip to content
Snippets Groups Projects
Commit 2b3a81db authored by Marco Clemencic's avatar Marco Clemencic
Browse files

retagging

git-svn-id: svn+ssh://svn.cern.ch/reps/gaudi/Gaudi/tags/GAUDI/GAUDI_v26r1@7717 53ecefc3-a64d-0410-9bdf-b8581fa3287e
parents 6ece0a0b 557a8bb4
No related tags found
No related merge requests found
......@@ -307,7 +307,7 @@ function openlink2(){
/// Code executed when the page is ready.
$(function () {
$(".loading").loadingIcon().removeClass("loading");
var ignore_fields = ["qmtest.cause", "qmtest.target"];
var ignore_fields = ["qmtest.cause", "qmtest.target", "causes"];
var fields_order = ["start_time", "end_time"];
// Add details about the project (if available)
......
......@@ -3,6 +3,12 @@ package manager: Marco Clemencic
Commit Id: $Format:%H$
============================= GaudiPolicy v15r4 ==============================
! 2015-02-16 - Marco Clemencic
- Fixed generation of .new reference file for stderr.
! 2015-02-13 - Marco Clemencic
- Fixed showing of test failure causes in the HTML report.
! 2015-02-13 - Marco Clemencic
- Fixed some special cases in GaudiTesting.
......
......@@ -440,7 +440,7 @@ class BaseTest(object):
preproc=preproc)(stderr, result)
causes += newcauses
if newcauses: # Write a new reference file for stdedd
newref = open(self.reference + ".new","w")
newref = open(lreference + ".new","w")
# sanitize newlines
for l in stderr.splitlines():
newref.write(l.rstrip() + '\n')
......
......@@ -240,7 +240,7 @@ class TestOrganizer :
for namedMeasurment in testElement.find("Results").getiterator("NamedMeasurement"):
name = namedMeasurment.get("name")
if name == 'Cause':
if name == 'Causes':
cause = namedMeasurment.find("Value")
if cause is not None:
ET.SubElement(span2, "span", {"class": "cause"}).text = cause.text + " "
......
......@@ -55,7 +55,7 @@ Package Coordinator: Marco Clemencic, Charles Leggett<br>
Purpose: Gaudi common set of packages<br><br>
</pre>
<!-- ====================================================================== -->
<h2><a name="v26r1">Gaudi v26r1</a> (2015-02-12)</h2>
<h2><a name="v26r1">Gaudi v26r1</a> (2015-02-16)</h2>
<h3>Externals version: <a href="http://lcgsoft.cern.ch/index.py?page=cfg_overview&cfg=74root6">LCGCMT_74root6</a></h3>
<h3>General Changes</h3>
<ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment