smallList = new LinkedList();
for (int i = 0; i < 100; i++) {
smallList.add(objArray[i]);
}
new Support_CollectionTest("", Collections
.synchronizedCollection(smallList)).runTest();
//Test self reference
synchCol = Collections.synchronizedCollection(smallList);
synchCol.add(smallList);