Fix reversed logic in test for Perl tests. Oh the irony.
authordbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Wed, 2 Mar 2011 14:24:33 +0000 (14:24 +0000)
committerdbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Wed, 2 Mar 2011 14:24:33 +0000 (14:24 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@2193 9efc2488-bf62-4759-914b-345cdb29e865

examples/buildbot.cfg

index 48cc067..252e2f4 100644 (file)
@@ -187,20 +187,22 @@ eg_factory.addStep(shell.Configure())
 # compile the code
 eg_factory.addStep(shell.Compile(command=["make"]))
 
+perldir = 'build/Open-ILS/src/perlmods'
 class PerlModuleTestMFHDMadness(shell.PerlModuleTest):
     'Override PerlModuleTest with nonstandard library location for testlib.pm'
     command = ['prove', '--lib', 'lib', '-I', 'lib/OpenILS/Utils/MFHD/test', '-r', 't']
     total = 0
 
 def has_perl_unit_tests(step):
-    if (os.path.exists(os.path.join('build/Open-ILS/src/perlmods', 'lib/OpenILS/Utils/MFHD/test'))):
-        return False
-    return True
+    'If there is a /lib/ sudir in the Perl dir, there are tests'
+    if (os.path.exists(os.path.join(perldir, 'lib'))):
+        return True
+    return False
 
 # run the Perl unit tests
 eg_factory.addStep(PerlModuleTestMFHDMadness(
     doStepIf=has_perl_unit_tests,
-    workdir="build/Open-ILS/src/perlmods")
+    workdir=perldir)
 )
 
 # report on the Python code