aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-05-28 20:54:15 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2021-05-28 20:54:15 +0300
commita8f1e7fea00aa0b6ad23b989a2ac63d3a560c880 (patch)
tree93e94347a6e1b6061aa8c16040a10201d4a67e80
parenta9959a385990bb9760cfdb5fda9a6bc6fb7725fe (diff)
downloadmeson-a8f1e7fea00aa0b6ad23b989a2ac63d3a560c880.zip
meson-a8f1e7fea00aa0b6ad23b989a2ac63d3a560c880.tar.gz
meson-a8f1e7fea00aa0b6ad23b989a2ac63d3a560c880.tar.bz2
Remove HFS workaround as everyone should use APFS by now.killhfs
-rwxr-xr-xrun_tests.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/run_tests.py b/run_tests.py
index 7d9a9e4..b55d3c8 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -245,13 +245,6 @@ def ensure_backend_detects_changes(backend):
if backend is not Backend.ninja:
return
need_workaround = False
- # We're not running on HFS+ which only stores dates in seconds:
- # https://developer.apple.com/legacy/library/technotes/tn/tn1150.html#HFSPlusDates
- # XXX: Upgrade Travis image to Apple FS when that becomes available
- # TODO: Detect HFS+ vs APFS
- if mesonlib.is_osx():
- mlog.warning('Running on HFS+, enabling timestamp resolution workaround', once=True)
- need_workaround = True
# We're using ninja >= 1.9 which has QuLogic's patch for sub-1s resolution
# timestamps
if not NINJA_1_9_OR_NEWER: