This patch disables several tests that doesn't work correctly on Solaris.

test_gdb is not deterministic and sometimes fails for unimportant reasons (only
when ran with gmake test from component root).

test_unicodedata needs to download additional data.
[Not for upstream]

test_time changes skip reason string to reflect the actual platform.
[Can be offered upstream]

test_socket fixes problem with sparc specific behavior of CMSG_SPACE(). Needed
values are not linear as the test expects and that might cause an exception for
last byte. Other problems in this test are related to known issues also
affecting other platforms. [Can be at least reported upstream]

test_re those two test are probably also locale related but I have no idea what
is the root cause of these... [Should be reported upstream]

test_pyexpat exception output is slightly different most likely due to platform
differences. We can safely comment it out. [Not for upstream]

test_tcl should be investigated more [Should be reported upstream]

test_float is another locale related issue. [Should be reported upstream]
https://github.com/python/cpython/commit/aa967ec4d4c2fc844f8f16b339140b050ae4d5e2

test_pkgutil doesn't expect that pkg module exists. [Not for upstream]

--- Python-3.9.2/Lib/test/test_gdb.py
+++ Python-3.9.2/Lib/test/test_gdb.py
@@ -52,6 +52,9 @@ if gdb_major_version < 7:
                             % (gdb_major_version, gdb_minor_version,
                                gdb_version))
 
+if sys.platform.startswith("sunos"):
+    raise unittest.SkipTest("test doesn't work well on Solaris")
+
 if not sysconfig.is_python_build():
     raise unittest.SkipTest("test_gdb only works on source builds at the moment.")
 
--- Python-3.9.2/Lib/test/test_unicodedata.py
+++ Python-3.9.2/Lib/test/test_unicodedata.py
@@ -324,6 +324,8 @@ class NormalizationTest(unittest.TestCas
         TESTDATAFILE = "NormalizationTest.txt"
         TESTDATAURL = f"http://www.pythontest.net/unicode/{unicodedata.unidata_version}/{TESTDATAFILE}"
 
+        if sys.platform.startswith("sunos"):
+            self.skipTest("test needs to download additional data")
         # Hit the exception early
         try:
             testdata = open_urlresource(TESTDATAURL, encoding="utf-8",
--- Python-3.9.2/Lib/test/test_re.py
+++ Python-3.9.2/Lib/test/test_re.py
@@ -1,5 +1,6 @@
 from test.support import (gc_collect, bigmemtest, _2G,
                           cpython_only, captured_stdout)
+import sys
 import locale
 import re
 import sre_compile
@@ -1918,6 +1919,8 @@ ELSE
         self.assertTrue(re.match(b'(?Li)\xc5', b'\xe5'))
         self.assertTrue(re.match(b'(?Li)\xe5', b'\xc5'))
 
+    @unittest.skipIf(sys.platform.startswith("sunos"),
+                     "test doesn't work well on sparc Solaris")
     def check_en_US_utf8(self):
         locale.setlocale(locale.LC_CTYPE, 'en_US.utf8')
         self.assertTrue(re.match(b'\xc5\xe5', b'\xc5\xe5', re.L|re.I))
@@ -1927,6 +1930,8 @@ ELSE
         self.assertIsNone(re.match(b'(?Li)\xc5', b'\xe5'))
         self.assertIsNone(re.match(b'(?Li)\xe5', b'\xc5'))
 
+    @unittest.skipIf(sys.platform.startswith("sunos"),
+                     "test doesn't work well on sparc Solaris")
     def test_locale_compiled(self):
         oldlocale = locale.setlocale(locale.LC_CTYPE)
         self.addCleanup(locale.setlocale, locale.LC_CTYPE, oldlocale)
--- Python-3.9.2/Lib/test/test_time.py
+++ Python-3.9.2/Lib/test/test_time.py
@@ -613,7 +613,7 @@ class _TestStrftimeYear:
             self.test_year('%04d', func=year4d)
 
     def skip_if_not_supported(y):
-        msg = "strftime() is limited to [1; 9999] with Visual Studio"
+        msg = "strftime() is limited to [1; 9999] on %s" % sys.platform
         # Check that it doesn't crash for year > 9999
         try:
             time.strftime('%Y', (y,) + (0,) * 8)
--- Python-3.9.2/Lib/test/test_socket.py
+++ Python-3.9.2/Lib/test/test_socket.py
@@ -3355,7 +3355,7 @@ class CmsgMacroTests(unittest.TestCase):
         # Test CMSG_SPACE() with various valid and invalid values,
         # checking the assumptions used by sendmsg().
         toobig = self.socklen_t_limit - socket.CMSG_SPACE(1) + 1
-        values = list(range(257)) + list(range(toobig - 257, toobig))
+        values = list(range(257)) + list(range(toobig - 257, toobig - 8))
 
         last = socket.CMSG_SPACE(0)
         # struct cmsghdr has at least three members, two of which are ints
@@ -3501,6 +3501,7 @@ class SCMRightsTest(SendrecvmsgServerTim
         self.createAndSendFDs(1)
 
     @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
+    @unittest.skipIf(sys.platform.startswith("sunos"), "skipping, see issue #12958")
     @unittest.skipIf(AIX, "skipping, see issue #22397")
     @requireAttrs(socket, "CMSG_SPACE")
     def testFDPassSeparate(self):
@@ -3512,6 +3513,7 @@ class SCMRightsTest(SendrecvmsgServerTim
 
     @testFDPassSeparate.client_skip
     @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
+    @unittest.skipIf(sys.platform.startswith("sunos"), "skipping, see issue #12958")
     @unittest.skipIf(AIX, "skipping, see issue #22397")
     def _testFDPassSeparate(self):
         fd0, fd1 = self.newFDs(2)
@@ -3525,6 +3527,7 @@ class SCMRightsTest(SendrecvmsgServerTim
             len(MSG))
 
     @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
+    @unittest.skipIf(sys.platform.startswith("sunos"), "skipping, see issue #12958")
     @unittest.skipIf(AIX, "skipping, see issue #22397")
     @requireAttrs(socket, "CMSG_SPACE")
     def testFDPassSeparateMinSpace(self):
@@ -3539,6 +3542,7 @@ class SCMRightsTest(SendrecvmsgServerTim
 
     @testFDPassSeparateMinSpace.client_skip
     @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
+    @unittest.skipIf(sys.platform.startswith("sunos"), "skipping, see issue #12958")
     @unittest.skipIf(AIX, "skipping, see issue #22397")
     def _testFDPassSeparateMinSpace(self):
         fd0, fd1 = self.newFDs(2)
--- Python-3.9.2/Lib/test/test_pyexpat.py
+++ Python-3.9.2/Lib/test/test_pyexpat.py
@@ -466,8 +466,8 @@ class HandlerExceptionTest(unittest.Test
                                        "pyexpat.c", "StartElement")
             self.check_traceback_entry(entries[2],
                                        "test_pyexpat.py", "StartElementHandler")
-            if sysconfig.is_python_build() and not (sys.platform == 'win32' and platform.machine() == 'ARM'):
-                self.assertIn('call_with_frame("StartElement"', entries[1][3])
+            #if sysconfig.is_python_build() and not (sys.platform == 'win32' and platform.machine() == 'ARM'):
+            #    self.assertIn('call_with_frame("StartElement"', entries[1][3])
 
 
 # Test Current* members:
--- Python-3.9.2/Lib/test/test_tcl.py
+++ Python-3.9.2/Lib/test/test_tcl.py
@@ -198,6 +198,7 @@ class TclTest(unittest.TestCase):
         self.assertRaises((UnicodeEncodeError, ValueError, TclError),
                           tcl.getboolean, 'on\ud800')
 
+    @unittest.skipIf(sys.platform.startswith("sunos"), "test doesn't work well on Solaris")
     def testEvalFile(self):
         tcl = self.interp
         filename = support.TESTFN_ASCII
@@ -212,6 +213,7 @@ class TclTest(unittest.TestCase):
         self.assertEqual(tcl.eval('set b'),'2')
         self.assertEqual(tcl.eval('set c'),'3')
 
+    @unittest.skipIf(sys.platform.startswith("sunos"), "test doesn't work well on Solaris")
     def test_evalfile_null_in_result(self):
         tcl = self.interp
         filename = support.TESTFN_ASCII
--- Python-3.9.4/Lib/test/test_float.py
+++ Python-3.9.4/Lib/test/test_float.py
@@ -144,7 +144,7 @@ class GeneralFloatCases(unittest.TestCas
         # non-UTF-8 byte string
         check(b'123\xa0')
 
-    @support.run_with_locale('LC_NUMERIC', 'fr_FR', 'de_DE')
+    @support.run_with_locale('LC_NUMERIC', 'fr_FR.UTF-8', 'de_DE.UTF-8')
     def test_float_with_comma(self):
         # set locale to something that doesn't use '.' for the decimal point
         # float must not accept the locale specific decimal point but
--- Python-3.9.4/Lib/test/test_pkgutil.py
+++ Python-3.9.4/Lib/test/test_pkgutil.py
@@ -479,7 +479,11 @@ class NestedNamespacePackageTest(unittes
         sys.path.insert(0, os.path.join(self.basedir, 'b'))
         import pkg
         self.addCleanup(unload, 'pkg')
-        self.assertEqual(len(pkg.__path__), 2)
+        # Solaris has its own pkg package that breaks this test
+        if os.path.exists("/usr/lib/python3.9/vendor-packages/pkg/"):
+            self.assertEqual(len(pkg.__path__), 3)
+        else:
+            self.assertEqual(len(pkg.__path__), 2)
         import pkg.subpkg
         self.addCleanup(unload, 'pkg.subpkg')
         self.assertEqual(len(pkg.subpkg.__path__), 2)