From b038a66c55012f888448b0842e18328fc2505741 Mon Sep 17 00:00:00 2001
From: Gary Williams <gary.williams@forgerock.com>
Date: Fri, 25 May 2012 10:32:56 +0000
Subject: [PATCH] Strip out leading/trailing white space for groups to run in functional tests
---
opendj-sdk/opends/tests/staf-tests/shared/tests/runTests.xml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opendj-sdk/opends/tests/staf-tests/shared/tests/runTests.xml b/opendj-sdk/opends/tests/staf-tests/shared/tests/runTests.xml
index 2e76c49..9aa56bd 100755
--- a/opendj-sdk/opends/tests/staf-tests/shared/tests/runTests.xml
+++ b/opendj-sdk/opends/tests/staf-tests/shared/tests/runTests.xml
@@ -101,7 +101,7 @@
groupsToRun = []
for line in TEST_PLAN_CUSTOM.split(","):
- groupsToRun.append(group_to_run(line.rstrip()))
+ groupsToRun.append(group_to_run(line.strip()))
</script>
<!-- TODO: If no groupsToRun then iterate will throw exception -->
--
Gitblit v1.10.0