Description: This line causes the test to fail on 32-bit architectures with
  an overflow error (the number is one too large). Bug reported upstream as
  I wasn't sure the direction the author wanted to go with replacing the
  broken test.
Bug: https://github.com/icza/gox/issues/6
Author: Stephen Gelman <ssgelm@debian.org>
Last-Update: 2022-02-16
---
--- a/mathx/mathx_test.go
+++ b/mathx/mathx_test.go
@@ -14,7 +14,7 @@
 		{"zero", 0, 0},
 		{"pos", 1, 1},
 		{"neg", -1, 1},
-		{"minint32", math.MinInt32, -math.MinInt32},
+		// {"minint32", math.MinInt32, -math.MinInt32},
 		{"maxint32", math.MaxInt32, math.MaxInt32},
 	}
 
