pingcap / mysql-tester

A Golang implementation of MySQL Test Framework
Apache License 2.0
61 stars 62 forks source link

Fix empty xunit file on error. #118

Open mjonss opened 9 months ago

mjonss commented 9 months ago

Close: #116

Issue was that os.Exit(1) was used on error, which bypasses all defer function.

Fix consistently use the already existing global testSuite and write the xunit file explicitly in the end of the main function, before possible os.Exit() calls.

CLAassistant commented 6 months ago

CLA assistant check
All committers have signed the CLA.

wuhuizuo commented 6 months ago

@mjonss Could we merge it?