dgryski / tinygo-test-corpus

run a test corpus against tinygo
MIT License
4 stars 1 forks source link

Support patching repos for reflect.DeepEqual -> equalSlices() #3

Closed dgryski closed 2 years ago

dgryski commented 3 years ago

Many repos would be testable if reflect.DeepEqual() ( https://github.com/tinygo-org/tinygo/pull/1469 ) support was available. Many of these uses are testing different slices for equality. If we could drop in different slice-equality functions and replace calls to reflect.DeepEqual with calls to our custom equality code, we could increase with the number of testable repos.

dgryski commented 2 years ago

DeepEqual support merged. Closing.