use Michael Davidsaver version of introspection

This commit is contained in:
Marty Kraimer
2011-04-21 15:21:18 -04:00
parent f611f0550b
commit fc74317993
26 changed files with 413 additions and 465 deletions
+4 -4
View File
@@ -5,7 +5,7 @@ There is a logic_error
On line 68 of ../testBaseException.cpp
../bin/linux-x86/testBaseException[0x80497b9]
../bin/linux-x86/testBaseException[0x8049a54]
/lib/libc.so.6(__libc_start_main+0xe6)[0x3ede36]
/lib/libc.so.6(__libc_start_main+0xe6)[0x126e36]
../bin/linux-x86/testBaseException[0x80490e1]
To translate run 'addr2line -e execname 0xXXXXXXX ...'
Note: Must be compiled with debug symbols
@@ -17,7 +17,7 @@ On line 75 of ../testBaseException.cpp
../bin/linux-x86/testBaseException() [0x8049cec]
../bin/linux-x86/testBaseException() [0x8049923]
../bin/linux-x86/testBaseException() [0x8049a54]
/lib/libc.so.6(__libc_start_main+0xe6) [0x3ede36]
/lib/libc.so.6(__libc_start_main+0xe6) [0x126e36]
../bin/linux-x86/testBaseException() [0x80490e1]
testBaseException...
@@ -26,7 +26,7 @@ all is OK
On line 48 of ../testBaseException.cpp
../bin/linux-x86/testBaseException() [0x8049581]
../bin/linux-x86/testBaseException() [0x8049a5c]
/lib/libc.so.6(__libc_start_main+0xe6) [0x3ede36]
/lib/libc.so.6(__libc_start_main+0xe6) [0x126e36]
../bin/linux-x86/testBaseException() [0x80490e1]
@@ -38,7 +38,7 @@ On line 57 of ../testBaseException.cpp
../bin/linux-x86/testBaseException() [0x80491ec]
../bin/linux-x86/testBaseException() [0x80496f9]
../bin/linux-x86/testBaseException() [0x8049a5c]
/lib/libc.so.6(__libc_start_main+0xe6) [0x3ede36]
/lib/libc.so.6(__libc_start_main+0xe6) [0x126e36]
../bin/linux-x86/testBaseException() [0x80490e1]
+5 -5
View File
@@ -1,5 +1,5 @@
--- testBaseExceptionGold 2011-02-10 04:39:30.000000000 -0500
+++ testBaseException 2011-04-15 14:18:40.000000000 -0400
+++ testBaseException 2011-04-21 10:00:27.000000000 -0400
@@ -1,37 +1,46 @@
+
+
@@ -8,7 +8,7 @@
+On line 68 of ../testBaseException.cpp
+../bin/linux-x86/testBaseException[0x80497b9]
+../bin/linux-x86/testBaseException[0x8049a54]
+/lib/libc.so.6(__libc_start_main+0xe6)[0x3ede36]
+/lib/libc.so.6(__libc_start_main+0xe6)[0x126e36]
+../bin/linux-x86/testBaseException[0x80490e1]
+To translate run 'addr2line -e execname 0xXXXXXXX ...'
+ Note: Must be compiled with debug symbols
@@ -20,7 +20,7 @@
+../bin/linux-x86/testBaseException() [0x8049cec]
+../bin/linux-x86/testBaseException() [0x8049923]
+../bin/linux-x86/testBaseException() [0x8049a54]
+/lib/libc.so.6(__libc_start_main+0xe6) [0x3ede36]
+/lib/libc.so.6(__libc_start_main+0xe6) [0x126e36]
+../bin/linux-x86/testBaseException() [0x80490e1]
+
testBaseException...
@@ -34,7 +34,7 @@
+On line 48 of ../testBaseException.cpp
+../bin/linux-x86/testBaseException() [0x8049581]
+../bin/linux-x86/testBaseException() [0x8049a5c]
+/lib/libc.so.6(__libc_start_main+0xe6) [0x3ede36]
+/lib/libc.so.6(__libc_start_main+0xe6) [0x126e36]
+../bin/linux-x86/testBaseException() [0x80490e1]
+
@@ -67,7 +67,7 @@
+../bin/linux-x86/testBaseException() [0x80491ec]
+../bin/linux-x86/testBaseException() [0x80496f9]
+../bin/linux-x86/testBaseException() [0x8049a5c]
+/lib/libc.so.6(__libc_start_main+0xe6) [0x3ede36]
+/lib/libc.so.6(__libc_start_main+0xe6) [0x126e36]
+../bin/linux-x86/testBaseException() [0x80490e1]
+
+12 -12
View File
@@ -1,20 +1,20 @@
Time test
diff 29.094910 milliSeconds
time per iteration 29.094910 microseconds
time per addTail/removeHead 0.014547 microseconds
diff 23.497236 milliSeconds
time per iteration 23.497236 microseconds
time per addTail/removeHead 0.011749 microseconds
Time test locked
diff 205.944899 milliSeconds
time per iteration 205.944899 microseconds
time per addTail/removeHead 0.102972 microseconds
diff 206.570083 milliSeconds
time per iteration 206.570083 microseconds
time per addTail/removeHead 0.103285 microseconds
Time std::list test
diff 656.960080 milliSeconds
time per iteration 656.960080 microseconds
time per addTail/removeHead 0.328480 microseconds
diff 632.330525 milliSeconds
time per iteration 632.330525 microseconds
time per addTail/removeHead 0.316165 microseconds
Time std::list test locked
diff 824.135585 milliSeconds
time per iteration 824.135585 microseconds
time per addTail/removeHead 0.412068 microseconds
diff 783.256490 milliSeconds
time per iteration 783.256490 microseconds
time per addTail/removeHead 0.391628 microseconds
+1 -1
View File
@@ -29,4 +29,4 @@ structure parent
structure child2
string Jane Bad Girl
pvField: totalConstruct 15 totalDestruct 14 ACTIVE 1
field: totalConstruct 108 totalDestruct 108
field: totalConstruct 108 totalDestruct 107 ACTIVE 1
+8
View File
@@ -0,0 +1,8 @@
--- testPVAppendGold 2011-02-09 05:21:30.000000000 -0500
+++ testPVAppend 2011-04-21 10:00:32.000000000 -0400
@@ -29,4 +29,4 @@
structure child2
string Jane Bad Girl
pvField: totalConstruct 15 totalDestruct 14 ACTIVE 1
-field: totalConstruct 108 totalDestruct 108
+field: totalConstruct 108 totalDestruct 107 ACTIVE 1
+1 -1
View File
@@ -1 +1 @@
2011.04.15 14:18:47 873020611 nanoSeconds isDst true
2011.04.21 10:00:33 929776649 nanoSeconds isDst true
+1 -1
View File
@@ -1 +1 @@
time per call 0.007050 microseconds
time per call 0.007064 microseconds
+4 -4
View File
@@ -1,5 +1,5 @@
current 1302891526 884416778 milliSec 1302891526884
2011.04.15 14:18:46 884416778 nanoSeconds isDst true
current 1303394433 13269031 milliSec 1303394433013
2011.04.21 10:00:33 13269031 nanoSeconds isDst true
fromTime_t
current 1302891526 0 milliSec 1302891526000
2011.04.15 14:18:46 0 nanoSeconds isDst true
current 1303394433 0 milliSec 1303394433000
2011.04.21 10:00:33 0 nanoSeconds isDst true
+6 -6
View File
@@ -1,6 +1,6 @@
one requested 0.400000 diff 0.400361 seconds
two requested 0.200000 diff 0.200302 seconds
one requested 0.200000 diff 0.200290 seconds
two requested 0.400000 diff 0.400346 seconds
one requested 0.000000 diff 0.000041 seconds
two requested 0.000000 diff 0.000060 seconds
one requested 0.400000 diff 0.400193 seconds
two requested 0.200000 diff 0.200190 seconds
one requested 0.200000 diff 0.200333 seconds
two requested 0.400000 diff 0.400372 seconds
one requested 0.000000 diff 0.000034 seconds
two requested 0.000000 diff 0.000050 seconds