Performance score 1.0 means both sides equal (ratio), and tests setup so lower is generally better

[[[Started testing at: Sun Dec 11 21:19:30 2022]]]

Using TIME MULTIPLIER: 15

Test Test of simple locking strategies (mutex v shared_ptr copy) (mutex vs shared_ptr<> copy)
	PERFORMANCE_SCORE	0.63
	DETAILS:         	[baseline test 8.14888 secs, and comparison 5.15813 sec, and warnIfPerfScore > 0.65, and perfScore=0.632986]
	                 	shared_ptr<> copy is FASTER

Test Test of simple locking strategies (mutex v SpinLock) (mutex vs SpinLock)
	PERFORMANCE_SCORE	0.35
	DETAILS:         	[baseline test 9.39565 secs, and comparison 3.30616 sec, and warnIfPerfScore > 0.5, and perfScore=0.351882]
	                 	SpinLock is FASTER

Test std::shared_ptr versus Memory::SharedPtr (shared_ptr vs SharedPtr)
	PERFORMANCE_SCORE	0.79
	DETAILS:         	[baseline test 11.871 secs, and comparison 9.34283 sec, and warnIfPerfScore > 1.05, and perfScore=0.787029]
	                 	SharedPtr is FASTER

Test std::shared_ptr (make_shared) versus Memory::SharedPtr (shared_ptr vs SharedPtr)
	PERFORMANCE_SCORE	1.1
	DETAILS:         	[baseline test 8.76624 secs, and comparison 9.43974 sec, and warnIfPerfScore > 1.15, and perfScore=1.07683]
	                 	SharedPtr is ***SLOWER***

Test Simple Struct With Strings Filling And Copying (wstring vs Charactes::String)
	PERFORMANCE_SCORE	0.18
	DETAILS:         	[baseline test 15.3877 secs, and comparison 2.72547 sec, and warnIfPerfScore > 0.48, and perfScore=0.17712]
	                 	Charactes::String is FASTER

Test Simple Struct With Strings Filling And Copying2 (wstring vs Charactes::String)
	PERFORMANCE_SCORE	0.21
	DETAILS:         	[baseline test 15.5872 secs, and comparison 3.26953 sec, and warnIfPerfScore > 0.57, and perfScore=0.209757]
	                 	Charactes::String is FASTER

Test Simple String append test (+='string object') 10x (wstring vs Charactes::String)
	PERFORMANCE_SCORE	2.3
	DETAILS:         	[baseline test 11.826 secs, and comparison 26.9393 sec, and warnIfPerfScore > 2.9, and perfScore=2.27797]
	                 	Charactes::String is ***SLOWER***

Test Simple String append test (+=wchar_t[]) 10x (wstring vs Charactes::String)
	PERFORMANCE_SCORE	2.2
	DETAILS:         	[baseline test 12.6633 secs, and comparison 27.6879 sec, and warnIfPerfScore > 2.9, and perfScore=2.18646]
	                 	Charactes::String is ***SLOWER***

Test Simple String append test (+=wchar_t[]) 100x (wstring vs Charactes::String)
	PERFORMANCE_SCORE	17
	DETAILS:         	[baseline test 10.8222 secs, and comparison 184.694 sec, and warnIfPerfScore > 24, and perfScore=17.0663]
	                 	Charactes::String is ***SLOWER***

Test String a + b (wstring vs String)
	PERFORMANCE_SCORE	1.3
	DETAILS:         	[baseline test 10.0686 secs, and comparison 13.376 sec, and warnIfPerfScore > 1.7, and perfScore=1.32848]
	                 	String is ***SLOWER***

Test wstringstream << test (wstring vs Charactes::String)
	PERFORMANCE_SCORE	0.99
	DETAILS:         	[baseline test 11.8909 secs, and comparison 11.8173 sec, and warnIfPerfScore > 1.5, and perfScore=0.993809]
	                 	Charactes::String is FASTER

Test String::substr() (wstring vs Charactes::String)
	PERFORMANCE_SCORE	0.12
	DETAILS:         	[baseline test 132.703 secs, and comparison 15.3345 sec, and warnIfPerfScore > 2.1, and perfScore=0.115555]
	                 	Charactes::String is FASTER

Test wstringstream versus BasicTextOutputStream (wstringstream vs MemoryStream<Characters::Character>)
	PERFORMANCE_SCORE	0.65
	DETAILS:         	[baseline test 13.2204 secs, and comparison 8.55116 sec, and warnIfPerfScore > 1.6, and perfScore=0.646815]
	                 	MemoryStream<Characters::Character> is FASTER

Test wstringstream versus StringBuilder (wstringstream vs StringBuilder)
	PERFORMANCE_SCORE	0.13
	DETAILS:         	[baseline test 14.4548 secs, and comparison 1.82768 sec, and warnIfPerfScore > 0.23, and perfScore=0.126441]
	                 	StringBuilder is FASTER

Test Simple c_str() test (wstring vs Charactes::String)
	PERFORMANCE_SCORE	1
	DETAILS:         	[baseline test 14.6374 secs, and comparison 15.2504 sec, and warnIfPerfScore > 1.3, and perfScore=1.04188]
	                 	Charactes::String is ***SLOWER***

Test Sequence<int> basics (vector<int> vs Sequence<int>)
	PERFORMANCE_SCORE	0.64
	DETAILS:         	[baseline test 11.9268 secs, and comparison 7.60952 sec, and warnIfPerfScore > 1.2, and perfScore=0.638018]
	                 	Sequence<int> is FASTER

Test Sequence<string> basics (vector<string> vs Sequence<string>)
	PERFORMANCE_SCORE	0.25
	DETAILS:         	[baseline test 12.0659 secs, and comparison 3.01711 sec, and warnIfPerfScore > 0.33, and perfScore=0.250053]
	                 	Sequence<string> is FASTER

Test Sequence_DoublyLinkedList<int> basics (vector<int> vs Sequence_DoublyLinkedList<int>)
	PERFORMANCE_SCORE	3.9
	DETAILS:         	[baseline test 11.455 secs, and comparison 44.6049 sec, and warnIfPerfScore > 6, and perfScore=3.89393]
	                 	Sequence_DoublyLinkedList<int> is ***SLOWER***

Test Sequence_Array<int> basics (vector<int> vs Sequence_Array<int>)
	PERFORMANCE_SCORE	0.66
	DETAILS:         	[baseline test 10.9246 secs, and comparison 7.25144 sec, and warnIfPerfScore > 0.8, and perfScore=0.663773]
	                 	Sequence_Array<int> is FASTER

Test Sequence_stdvector<int> basics (vector<int> vs Sequence_stdvector<int>)
	PERFORMANCE_SCORE	1.1
	DETAILS:         	[baseline test 11.5716 secs, and comparison 12.9489 sec, and warnIfPerfScore > 1.4, and perfScore=1.11903]
	                 	Sequence_stdvector<int> is ***SLOWER***

Test Sequence_DoublyLinkedList<string> basics (vector<string> vs Sequence_DoublyLinkedList<string>)
	PERFORMANCE_SCORE	0.33
	DETAILS:         	[baseline test 12.4663 secs, and comparison 4.09545 sec, and warnIfPerfScore > 0.65, and perfScore=0.328521]
	                 	Sequence_DoublyLinkedList<string> is FASTER

Test Collection<int> basics (vector<int> vs Collection<int>)
	PERFORMANCE_SCORE	3.5
	DETAILS:         	[baseline test 11.5315 secs, and comparison 40.7968 sec, and warnIfPerfScore > 4.4, and perfScore=3.53786]
	                 	Collection<int> is ***SLOWER***

Test Collection<string> basics (vector<string> vs Collection<string>)
	PERFORMANCE_SCORE	0.34
	DETAILS:         	[baseline test 12.1735 secs, and comparison 4.17457 sec, and warnIfPerfScore > 0.6, and perfScore=0.342922]
	                 	Collection<string> is FASTER

Test Collection_LinkedList<string> basics (vector<string> vs Collection_LinkedList<string>)
	PERFORMANCE_SCORE	0.34
	DETAILS:         	[baseline test 12.0638 secs, and comparison 4.14834 sec, and warnIfPerfScore > 0.6, and perfScore=0.343866]
	                 	Collection_LinkedList<string> is FASTER

Test Collection_stdforward_list<string> basics (vector<string> vs Collection_stdforward_list<string>)
	PERFORMANCE_SCORE	0.36
	DETAILS:         	[baseline test 11.6856 secs, and comparison 4.1812 sec, and warnIfPerfScore > 0.6, and perfScore=0.357808]
	                 	Collection_stdforward_list<string> is FASTER

Test Collection_stdmultiset<string> basics (vector<string> vs Collection_stdmultiset<string>)
	PERFORMANCE_SCORE	0.59
	DETAILS:         	[baseline test 11.7323 secs, and comparison 6.92955 sec, and warnIfPerfScore > 1.3, and perfScore=0.59064]
	                 	Collection_stdmultiset<string> is FASTER

Test Collection_stdmultiset<string> basics with rnd strings (vector<string> vs Collection_stdmultiset<string>)
	PERFORMANCE_SCORE	0.82
	DETAILS:         	[baseline test 13.0145 secs, and comparison 10.6834 sec, and warnIfPerfScore > 1.3, and perfScore=0.820885]
	                 	Collection_stdmultiset<string> is FASTER

Test std::set<int> vs Set<int> (set<int> vs Set<int>)
	PERFORMANCE_SCORE	0.13
	DETAILS:         	[baseline test 57.8641 secs, and comparison 7.24715 sec, and warnIfPerfScore > 0.3, and perfScore=0.125244]
	                 	Set<int> is FASTER

Test String Characters::Format () (sprintf vs String Characters::Format)
	PERFORMANCE_SCORE	1.4
	DETAILS:         	[baseline test 11.1911 secs, and comparison 16.0109 sec, and warnIfPerfScore > 1.5, and perfScore=1.43068]
	                 	String Characters::Format is ***SLOWER***

Test BLOB versus vector<byte> (vector<byte> vs BLOB)
	PERFORMANCE_SCORE	0.41
	DETAILS:         	[baseline test 9.1771 secs, and comparison 3.76205 sec, and warnIfPerfScore > 0.55, and perfScore=0.409939]
	                 	BLOB is FASTER

Test Test_JSONReadWriteFile (15.000000 seconds vs Test_JSONReadWriteFile)
	PERFORMANCE_SCORE	0.074
	DETAILS:         	[baseline test 15 secs, and comparison 1.10436 sec, and warnIfPerfScore > 0.1, and perfScore=0.0736241]
	                 	Test_JSONReadWriteFile is FASTER

Test Test_Optional_ (15.000000 seconds vs Test_Optional_)
	PERFORMANCE_SCORE	0.23
	DETAILS:         	[baseline test 15 secs, and comparison 3.43568 sec, and warnIfPerfScore > 0.5, and perfScore=0.229045]
	                 	Test_Optional_ is FASTER

Test UTF82WString win32API vs codecvt_utf8 (win32API vs codecvt_utf8)
	PERFORMANCE_SCORE	1.2
	DETAILS:         	[baseline test 12.4433 secs, and comparison 15.46 sec, and warnIfPerfScore > 2, and perfScore=1.24243]
	                 	codecvt_utf8 is ***SLOWER***

Test WString2UTF8 win32API vs codecvt_utf8 (win32API vs codecvt_utf8)
	PERFORMANCE_SCORE	2.8
	DETAILS:         	[baseline test 12.5093 secs, and comparison 35.0525 sec, and warnIfPerfScore > 3.6, and perfScore=2.8021]
	                 	codecvt_utf8 is ***SLOWER***

[[[Tests took: 18 minutes, 38 seconds]]]

Succeeded
