[Opensrf-commits] r2190 - trunk/examples (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Wed Mar 2 00:15:01 EST 2011
Author: dbs
Date: 2011-03-02 00:14:58 -0500 (Wed, 02 Mar 2011)
New Revision: 2190
Modified:
trunk/examples/buildbot.cfg
Log:
Syntax, baby, syntax (for the buildbot)
Modified: trunk/examples/buildbot.cfg
===================================================================
--- trunk/examples/buildbot.cfg 2011-03-02 05:10:21 UTC (rev 2189)
+++ trunk/examples/buildbot.cfg 2011-03-02 05:14:58 UTC (rev 2190)
@@ -192,16 +192,16 @@
total = 0
def has_perl_unit_tests(step):
- if (step.build.getProperty('branch') -= 'branches/rel_1_6'):
+ if (step.build.getProperty('branch') == 'branches/rel_1_6'):
return false
- elif (step.build.getProperty('branch') -= 'branches/rel_2_0'):
+ elif (step.build.getProperty('branch') == 'branches/rel_2_0'):
return false
return true
# run the Perl unit tests
-eg_factory.addStep(
+eg_factory.addStep(PerlModuleTestMFHDMadness(
doStepIf=has_perl_unit_tests,
- PerlModuleTestMFHDMadness(workdir="build/Open-ILS/src/perlmods")
+ workdir="build/Open-ILS/src/perlmods")
)
# report on the Python code
More information about the opensrf-commits
mailing list