From the CodeDog/Tests folder, when I run the following command on Linux Mint:
$ python3 containerTests.py swift maps2
I get result:
testResult: maps2 : ***Run Fail*** expected ' isEmpty:true012 at(cc)=2' not ' isEmpty:true12 at(cc)=2'
I have tracked the problem back to Map.Lib.dog RBTreeMap.insert() line 160 where we declare and allocate newNode:
our Node_RBTree<keyType, valueType>:: newNode
Where the new variable 'newNode' is getting set to RBTreeMap.Leaf. Would like to see how this test performs on a Mac to determine if this is an error specific to Swift on Linux.