From e6f248d9bc26387e2b96c164cd9aa6b8959151f6 Mon Sep 17 00:00:00 2001
From: al_xipe <al_xipe@localhost>
Date: Fri, 16 Feb 2007 00:50:08 +0000
Subject: [PATCH] this commit includes:   1. explicitly define where to find the jvm for stax and staxevent services   2. fix typo in a message   3. fix to restore original config.py in the workspace   4. fix for windows agnostism of runFuncTests.xml

---
 opends/tests/functional-tests/testcases/runFuncTests.xml |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opends/tests/functional-tests/testcases/runFuncTests.xml b/opends/tests/functional-tests/testcases/runFuncTests.xml
index 944f4fc..27aed7a 100755
--- a/opends/tests/functional-tests/testcases/runFuncTests.xml
+++ b/opends/tests/functional-tests/testcases/runFuncTests.xml
@@ -62,8 +62,8 @@
         DSTFILE = '%s/%s' % (TMPDIR,ZIPNAME) 
         OPENDS_BINPATH = '%s/%s/bin' % (DIRECTORY_INSTANCE_DIR,OPENDSNAME) 
         OSName= STAXResult
-        winPattern=re.compile('win*', re.IGNORECASE)
-        isWindows=winPattern.match(OSName)
+        winPattern=re.compile('win', re.IGNORECASE)
+        isWindows=winPattern.search(OSName)
         if isWindows:
           fileExt='.bat'
         else:

--
Gitblit v1.10.0