go-spew/spew
Patrick Mezard 264fa19def tests: fix TestSortValues on 32-bits platforms
reflect.DeepEqual fails when comparing reflect.Value containing float64. I
think it cannot make sense of reflect.Value pointer tricks and directly
compare reflect.Value.val fields which contain the float value in 64 bits,
but a pointer to the float in 32 bits.

Fortunately, interface{} which have a similar memory layout, compare correctly,
so we just turn the []reflect.Value into []interface{}.
2013-12-01 16:46:38 +01:00
..
testdata Add tests for recent cgo handling updates. 2013-09-21 21:50:00 -05:00
common.go Correct valuesSorter.Less function for uintptr. 2013-11-14 22:03:41 -06:00
common_test.go tests: fix TestSortValues on 32-bits platforms 2013-12-01 16:46:38 +01:00
config.go Add SortKeys option to doco for NewDefaultConfig. 2013-11-16 20:45:52 -06:00
doc.go Update README and doc.go with new SortKeys option. 2013-11-16 16:05:42 -06:00
dump.go Reorganize the new map key sorting functionality. 2013-11-14 21:39:21 -06:00
dump_test.go Update imports for previous. 2013-11-14 21:46:27 -06:00
dumpcgo_test.go Add tests for recent cgo handling updates. 2013-09-21 21:50:00 -05:00
dumpnocgo_test.go Add tests for recent cgo handling updates. 2013-09-21 21:50:00 -05:00
example_test.go Add byte slice to Dump example. 2013-03-08 22:45:50 -06:00
format.go Reorganize the new map key sorting functionality. 2013-11-14 21:39:21 -06:00
format_test.go config: add SortKeys option to sort native map keys before display 2013-10-27 23:44:49 +01:00
internal_test.go Reorganize the new map key sorting functionality. 2013-11-14 21:39:21 -06:00
spew.go Fix a few style issues pointed out by golint. 2013-11-14 21:19:56 -06:00
spew_test.go Add tests for new Sdump function. 2013-03-11 18:17:45 -05:00