Skip to content

Commit

Permalink
Merge pull request #249 from ESMCI/wilke/scripts/error
Browse files Browse the repository at this point in the history
Changed error message, variable name identical to entry in xml now
  • Loading branch information
jedwards4b authored Jul 12, 2016
2 parents 6450a66 + 7b34e98 commit f8417e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/python/CIME/case_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def case_setup(case, clean=False, test_mode=False, reset=False):
if ntasks == 1:
case.set_value("NTASKS_%s" % comp, ninst)
else:
expect(False, "%s NINST value %d greater than %s NTASKS %d" % (comp, ninst, comp, ntasks))
expect(False, "NINST_%s value %d greater than NTASKS_%s %d" % (comp, ninst, comp, ntasks))

expect(not (case.get_value("BUILD_THREADED") and case.get_value("COMPILER") == "nag"),
"it is not possible to run with OpenMP if using the NAG Fortran compiler")
Expand Down

0 comments on commit f8417e7

Please sign in to comment.