Skip to content

Commit

Permalink
remove debug print lines
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Aug 21, 2023
1 parent 1be36aa commit a7913e3
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions CIME/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1149,9 +1149,6 @@ def get_full_test_name(
]

result = partial_test
print(
f"partial_testcase {partial_testcase} partial_machine {partial_machine} partial_compiler {partial_compiler}"
)
for partial_val, arg_val, name in required_fields:
if partial_val is None:
# Add to result based on args
Expand All @@ -1161,7 +1158,6 @@ def get_full_test_name(
partial_test, name
),
)
print(f"name = {name} result = {result}")
if name == "machine" and "*_" in result:
result = result.replace("*_", arg_val + "_")
elif name == "compiler" and "_*" in result:
Expand Down Expand Up @@ -1220,9 +1216,7 @@ def get_full_test_name(
partial_test, partial_caseopts, caseopts
),
)
print(
f" partial_test {partial_test} machine {machine} compiler {compiler} result {result}"
)

return result


Expand Down

0 comments on commit a7913e3

Please sign in to comment.