mpExperienceQUIC: avoid no space left error due to go-build directories

This commit is contained in:
Quentin De Coninck 2017-05-11 15:00:31 +02:00
parent d0aa85a08f
commit 15a7e87e23

View File

@ -88,3 +88,5 @@ class MpExperienceQUIC(MpExperience):
self.mpTopo.commandTo(self.mpConfig.client, "netstat -sn > netstat_client_after")
self.mpTopo.commandTo(self.mpConfig.server, "pkill -f " + MpExperienceQUIC.SERVER_GO_FILE)
self.mpTopo.commandTo(self.mpConfig.client, "sleep 2")
# Need to delete the go-build directory in tmp; could lead to no more space left error
self.mpTopo.commandTo(self.mpConfig.client, "rm /tmp/go-build*")