--- a/test.py Mon Sep 10 17:15:07 2012 -0700
+++ b/test.py Tue Sep 11 13:23:53 2012 -0700
@@ -1185,7 +1185,7 @@
# See if this is a valid test suite.
path_cmd = os.path.join("utils", test_runner_name + " --print-test-name-list")
(rc, suites, standard_err, et) = run_job_synchronously(path_cmd, os.getcwd(), False, False)
- if options.suite in suites:
+ if options.suite in suites.split('\n'):
suites = options.suite + "\n"
else:
print >> sys.stderr, 'The test suite was not run because an unknown test suite name was requested.'