Skip to content

Commit

Permalink
Mark trace test as known bug on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
jmroot committed Feb 7, 2024
1 parent ad8b6dd commit 1e5fd69
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions tests/test/trace/test.tcl.in
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,17 @@ proc test_trace {} {
}
}

set trace_constraints [list tracemode_support]
if {$::tcl_platform(machine) eq "arm64"} {
# Trace mode (specifically SIP workaround) is broken on arm64
# https://trac.macports.org/ticket/66358
lappend trace_constraints knownBug
}

test trace {
Regression test for trace.
} -constraints {
tracemode_support
} -body {
} -constraints $trace_constraints \
-body {
test_trace
} -result "No errors found."

Expand Down

0 comments on commit 1e5fd69

Please sign in to comment.