<pre style='margin:0'>
Clemens Lang (neverpanic) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/5c43ff0458dbcd8703f044a44efd28e2e6ec0cf1">https://github.com/macports/macports-base/commit/5c43ff0458dbcd8703f044a44efd28e2e6ec0cf1</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 5c43ff0458dbcd8703f044a44efd28e2e6ec0cf1
</span>Author: Clemens Lang <cal@macports.org>
AuthorDate: Sun Oct 1 16:01:12 2023 +0200

<span style='display:block; white-space:pre;color:#404040;'>    darwintrace: Disable broken tests on arm64
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Let's not break CI on arm64, even though this test failure points to an
</span><span style='display:block; white-space:pre;color:#404040;'>    actual problem.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    See: https://trac.macports.org/ticket/66358#comment:39
</span>---
 src/darwintracelib1.0/tests/proc.test | 12 ++++++++++++
 1 file changed, 12 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/darwintracelib1.0/tests/proc.test b/src/darwintracelib1.0/tests/proc.test
</span><span style='display:block; white-space:pre;color:#808080;'>index fea007486..d385c0389 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/darwintracelib1.0/tests/proc.test
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/darwintracelib1.0/tests/proc.test
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -7,6 +7,8 @@ package require Pextlib 1.0
</span> 
 source "testlib.tcl"
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+testConstraint notarm64 [expr {[exec -ignorestderr -- /usr/bin/arch] ne "arm64"}]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> test execve_selfpreserving_env "Test that you cannot get out of the sandbox by unsetting environment variables" \
     -setup [setup [list allow $cwd]] \
     -cleanup [expect] \
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -204,7 +206,12 @@ test spawn_non_existing_inside_sandbox "Test that posix_spawn(2) on a non-existi
</span>     } \
     -result [lrepeat 2 "posix_spawn: No such file or directory"]
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# This test is currently broken on arm64, because Apple compiles its SIP-protected binaries with
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# pointer authenticaation using the arm64e architecture, but marks it as a preview and only allows
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Apple-signed binaries, or arbitrary binaries on systems that are booted with
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# boot-args=-arm64e_preview_abi (which cannot be enabled without disabling SIP).
</span> test spawn_sip_binary "Test that posix_spawn(2) works on a SIP-protected binary (which will make a copy)" \
<span style='display:block; white-space:pre;background:#e0ffe0;'>+    -constraints {notarm64} \
</span>     -setup {
         file delete -force [file join $::env(DARWINTRACE_SIP_WORKAROUND_PATH) [getuid] usr/bin/env]
         [setup [list allow /]]
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -223,7 +230,12 @@ test spawn_sip_binary "Test that posix_spawn(2) works on a SIP-protected binary
</span>     -match glob \
     -result [list "DARWINTRACE_LOG=/tmp/macports-test-*" "DYLD_INSERT_LIBRARIES=$darwintrace_lib" 1]
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# This test is currently broken on arm64, because Apple compiles its SIP-protected binaries with
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# pointer authenticaation using the arm64e architecture, but marks it as a preview and only allows
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Apple-signed binaries, or arbitrary binaries on systems that are booted with
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# boot-args=-arm64e_preview_abi (which cannot be enabled without disabling SIP).
</span> test spawn_sip_script "Test that posix_spawn(2) works on a SIP-protected shell script (which will copy the interpreter)" \
<span style='display:block; white-space:pre;background:#e0ffe0;'>+    -constraints {notarm64} \
</span>     -setup [setup [list allow /]] \
     -cleanup [expect {}] \
     -body {exec -ignorestderr -- ./posix_spawn /usr/bin/umask} \
</pre><pre style='margin:0'>

</pre>