mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

tdj_tx
01.32.2007 1fe43b27d8f7007331715f9e9148d915e1b61fec
I had to change dsBinPath in the exportLdif function back to dsPath, it was causing failures.
1 files modified
8 ■■■■ changed files
opends/tests/functional-tests/shared/functions/dsadm.xml 8 ●●●● patch | view | raw | blame | history
opends/tests/functional-tests/shared/functions/dsadm.xml
@@ -1314,16 +1314,16 @@
    </function-map-args>
    <sequence>
      <message>
        'export-ldif%s -l %s -n %s %s' % (fileExt,ldifFile,backEnd,extraParams)
      <message>
        '%s/bin/export-ldif%s -l %s -n %s %s' % (dsPath,fileExt,ldifFile,backEnd,extraParams)
      </message>
      <process name="'Ldif Export'">
        <location>'%s' % location </location>
        <command>'%s/export-ldif%s' % (dsBinPath,fileExt)</command>
        <command>'%s/bin/export-ldif%s' % (dsPath,fileExt)</command>
        <parms>'-l %s -n %s %s' % (ldifFile,backEnd,extraParams)</parms>
        <workdir>'%s/bin' % dsPath</workdir>
        <envs>
          ['PATH=/bin:/usr/bin:%s' % dsBinPath, 'JAVA_HOME=%s' % JAVA_HOME]
          ['PATH=/bin:/usr/bin:%s' % dsPath, 'JAVA_HOME=%s' % JAVA_HOME]
        </envs>
        <stderr mode="'stdout'"/>
        <returnstdout/>