Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates for testreporter and remove AWAV from testlist #1984

Merged
merged 1 commit into from
Oct 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 15 additions & 13 deletions scripts/Tools/testreporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,75 +125,77 @@ def get_testreporter_xml(testroot, testid, tagname, testtype):
test_status['BASELINE']=line[0:4]
if "TPUTCOMP" in line:
test_status['TPUTCOMP']=line[0:4]
if "FAIL PFS" in line:
test_status['STATUS']="FAIL"
if "INIT" in line:
test_status['INIT']=line[0:4]
if line[0:4] == "FAIL":
if line[0:4] in ("FAIL","PEND"):
test_status['STATUS']="SFAIL"
test_status['COMMENT']+="INIT fail! "
break
if "CREATE_NEWCASE" in line:
test_status['CREATE_NEWCASE']=line[0:4]
if line[0:4] == "FAIL":
if line[0:4] in ("FAIL","PEND"):
test_status['STATUS']="SFAIL"
test_status['COMMENT']+="CREATE_NEWCASE fail! "
break
if "XML" in line:
test_status['XML']=line[0:4]
if line[0:4] == "FAIL":
if line[0:4] in ("FAIL","PEND"):
test_status['STATUS']="SFAIL"
test_status['COMMENT']+="XML fail! "
break
if "SETUP" in line:
test_status['SETUP']=line[0:4]
if line[0:4] == "FAIL":
if line[0:4] in ("FAIL","PEND"):
test_status['STATUS']="SFAIL"
test_status['COMMENT']+="SETUP fail! "
break
if "SHAREDLIB_BUILD" in line:
test_status['SHAREDLIB_BUILD']=line[0:4]
if line[0:4] == "FAIL":
if line[0:4] in ("FAIL","PEND"):
test_status['STATUS']="CFAIL"
test_status['COMMENT']+="SHAREDLIB_BUILD fail! "
break
if "MODEL_BUILD" in line:
test_status['MODEL_BUILD']=line[0:4]
if line[0:4] == "FAIL":
if line[0:4] in ("FAIL","PEND"):
test_status['STATUS']="CFAIL"
test_status['COMMENT']+="MODEL_BUILD fail! "
break
if "SUBMIT" in line:
test_status['STATUS']=line[0:4]
if line[0:4] == "FAIL":
if line[0:4] in ("FAIL","PEND"):
test_status['COMMENT']+="SUBMIT fail! "
break
if "RUN" in line:
test_status['STATUS']=line[0:4]
if line[0:4] == "FAIL":
if line[0:4] in ("FAIL","PEND"):
test_status['COMMENT']+="RUN fail! "
break
if "COMPARE_base_rest" in line:
test_status['STATUS']=line[0:4]
if line[0:4] == "FAIL":
if line[0:4] in ("FAIL","PEND"):
test_status['COMMENT']+="Restart fail! "
break
if "COMPARE_base_hybrid" in line:
test_status['STATUS']=line[0:4]
if line[0:4] == "FAIL":
if line[0:4] in ("FAIL","PEND"):
test_status['COMMENT']+="Hybrid fail! "
break
if "COMPARE_base_multiinst" in line:
test_status['STATUS']=line[0:4]
if line[0:4] == "FAIL":
if line[0:4] in ("FAIL","PEND"):
test_status['COMMENT']+="Multi instance fail! "
break
if "COMPARE_base_test" in line:
test_status['STATUS']=line[0:4]
if line[0:4] == "FAIL":
if line[0:4] in ("FAIL","PEND"):
test_status['COMMENT']+="Base test fail! "
break
if "COMPARE_base_single_thread" in line:
test_status['STATUS']=line[0:4]
if line[0:4] == "FAIL":
if line[0:4] in ("FAIL","PEND"):
test_status['COMMENT']+="Thread test fail! "
break

Expand Down
9 changes: 0 additions & 9 deletions src/drivers/mct/cime_config/testdefs/testlist_drv.xml
Original file line number Diff line number Diff line change
Expand Up @@ -614,15 +614,6 @@
</machine>
</machines>
</test>
<test name="SMS_Ld3" grid="ww3a_ww3a" compset="AWAV">
<machines>
<machine name="hobart" compiler="pgi" category="prebeta">
<options>
<option name="wallclock">00:30:00</option>
</options>
</machine>
</machines>
</test>
<test name="PRE" grid="f09_f09" compset="ADESP">
<machines>
<machine name="hobart" compiler="nag" category="pauseresume"/>
Expand Down