summarylogtreecommitdiffstats
path: root/0133-smoketests-update.patch
diff options
context:
space:
mode:
authoratomlong2021-10-23 17:55:22 +0800
committeratomlong2021-10-23 18:06:15 +0800
commit80096c8de4b34ec1ed8f30bb428918cd592b2424 (patch)
treeb48dd1e73de9ea35a4709fb6b93deb16331ec514 /0133-smoketests-update.patch
parent89a67c05174951d172252b1db96ff93cc4ec4bcd (diff)
downloadaur-mingw-w64-python.tar.gz
update to 3.9.7
Diffstat (limited to '0133-smoketests-update.patch')
-rw-r--r--0133-smoketests-update.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/0133-smoketests-update.patch b/0133-smoketests-update.patch
deleted file mode 100644
index 0178d817dfe3..000000000000
--- a/0133-smoketests-update.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 61c5a4a14932539b31878de0b60bc98bcba791b9 Mon Sep 17 00:00:00 2001
-From: Christoph Reiter <reiter.christoph@gmail.com>
-Date: Sun, 1 Aug 2021 18:48:43 +0200
-Subject: [PATCH 133/N] smoketests: update
-
----
- mingw_smoketests.py | 7 +++++++
- 1 file changed, 7 insertions(+)
-
-diff --git a/mingw_smoketests.py b/mingw_smoketests.py
-index 3f41855..0b99c88 100644
---- a/mingw_smoketests.py
-+++ b/mingw_smoketests.py
-@@ -57,6 +57,13 @@ class Tests(unittest.TestCase):
- self.assertFalse(hasattr(sys, 'getdlopenflags'))
- self.assertFalse([n for n in dir(os) if n.startswith("RTLD_")])
-
-+ def test_time_no_unix_stuff(self):
-+ import time
-+ self.assertFalse([n for n in dir(time) if n.startswith("clock_")])
-+ self.assertFalse([n for n in dir(time) if n.startswith("CLOCK_")])
-+ self.assertFalse([n for n in dir(time) if n.startswith("pthread_")])
-+ self.assertFalse(hasattr(time, 'tzset'))
-+
- def test_strftime(self):
- import time
- with self.assertRaises(ValueError):
---
-2.32.0
-