Daily Commit Log

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

Daily Commit Log

commits-2
Changes to Trunk (http://source.squeak.org/trunk.html) in the last 24 hours:

http://lists.squeakfoundation.org/pipermail/packages/2016-March/009512.html

Name: NetworkTests-eem.41
Ancestors: NetworkTests-ul.40

Improve testSocketReuse.  It seems correct that the SocketPlugin answers whatever bit things like  SO_REUSEADDR set in underlying socket fields, not the 1 that the test expects.  e.g. on Mac OS X
        Socket newUDP
                setOption: 'SO_REUSEADDR' value: 1;
                getOption: 'SO_REUSEADDR'
answers #(0 4), not #(0 1)

=============================================