Skip to content

Commit

Permalink
handle so that we dont have a list of test names to maintain
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Jul 29, 2016
1 parent 92a266e commit 0ba7f50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/python/CIME/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ def find_system_test(testname, case):
Fail if the test is not found in any of the paths.
'''
system_test_path = None
if "TEST" in testname:
if testname.startswith("TEST"):
system_test_path = "CIME.SystemTests.system_tests_common.%s"%(testname)
else:
components = ["any"]
Expand Down

0 comments on commit 0ba7f50

Please sign in to comment.