From 1fe43b27d8f7007331715f9e9148d915e1b61fec Mon Sep 17 00:00:00 2001
From: tdj_tx <tdj_tx@localhost>
Date: Mon, 30 Apr 2007 23:32:14 +0000
Subject: [PATCH] I had to change dsBinPath in the exportLdif function back to dsPath, it was causing failures.
---
opends/tests/functional-tests/shared/functions/dsadm.xml | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opends/tests/functional-tests/shared/functions/dsadm.xml b/opends/tests/functional-tests/shared/functions/dsadm.xml
index fee9f68..9ae134c 100755
--- a/opends/tests/functional-tests/shared/functions/dsadm.xml
+++ b/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/>
--
Gitblit v1.10.0