On 09/04/2009 01:44 AM, Thomas Mueller wrote:
hi

i finally managed to switch to git. so my regression tests are back on
track. :)

on changing the config i also disabled etch and started squeeze. On
squeeze there seem to be problems on submitting. the tests "pass" but on
regress.bacula.org there only shows up 1 sucecssfull test.

do i  need to hit the "reset" button somewhere?

(Sorry it took so long to respond to this...)

I don't see anything obviously wrong - from the output you pasted in your email, everything looks right. The one thing that quickly jumps out at me, though, is that the only build names that seem to be causing the problem have a '/' in the OS. Could you please try applying this patch from your regress directory like so:

patch -p1 < regress-fixup-slashes.diff

and give it another try?

--
Frank Sweetser fs at wpi.edu  |  For every problem, there is a solution that
WPI Senior Network Engineer   |  is simple, elegant, and wrong. - HL Mencken
    GPG fingerprint = 6174 1257 129E 0D21 D8D4  E8A3 8E39 29E3 E2E8 8CEC
diff --git a/regress/scripts/get-os b/regress/scripts/get-os
index 61dd8c3..8143a6c 100755
--- a/regress/scripts/get-os
+++ b/regress/scripts/get-os
@@ -516,4 +516,4 @@ unknown)
 esac
 
 
-echo "${DISTNAME}-${DISTVER}"
+echo "${DISTNAME}-${DISTVER}" | sed -e 's,/,-,g'
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Bacula-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bacula-devel

Reply via email to