The Trunk: Nebraska-ul.54.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Nebraska-ul.54.mcz

commits-2
Levente Uzonyi uploaded a new version of Nebraska to project The Trunk:
http://source.squeak.org/trunk/Nebraska-ul.54.mcz

==================== Summary ====================

Name: Nebraska-ul.54
Author: ul
Time: 30 December 2018, 6:25:51.061867 pm
UUID: 3b205aca-b10c-4acd-8ef6-c5cbe7101522
Ancestors: Nebraska-mt.53

- make sure StringSocketTestCase >> #tearDown works even if #setUp fails.

=============== Diff against Nebraska-mt.53 ===============

Item was changed:
  ----- Method: StringSocketTestCase>>tearDown (in category 'running') -----
  tearDown
+
+ end1 ifNotNil: [
+ end1 destroy.
+ end1 := nil ].
+ end2 ifNotNil: [
+ end2 destroy.
+ end2 := nil ].
+ "StringSocket >> #destroy is expected to destroy the tcp socket. The code below will just ensure that."
+ socket1 ifNotNil: [
+ socket1 destroy.
+ socket1 := nil ].
+ socket2 ifNotNil: [
+ socket2 destroy.
+ socket2 := nil ]
- end1 destroy.
- end2 destroy.
  !