Skip to content

Commit 51d0eed

Browse files
committed
[druntime-test]: exceptions: Skip memoryerror_null_call on linux-aarch64
Signed-off-by: Andrei Horodniceanu <[email protected]>
1 parent 2bc2ddd commit 51d0eed

File tree

1 file changed

+10
-0
lines changed
  • runtime/druntime/test/exceptions

1 file changed

+10
-0
lines changed

runtime/druntime/test/exceptions/Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,16 @@ endif
5858
ifeq ($(OS),windows)
5959
TESTS+=winstack
6060
endif
61+
62+
ifdef IN_LDC
63+
ifeq ($(OS)-$(ARCH),linux-aarch64)
64+
# This hits the "should never happen" default branch in the
65+
# rt.dwarfeh._d_throw_exception:399 unwind switch statement.
66+
# The value is 0xf7fe7fb8 which is complete garbage.
67+
TESTS := $(filter-out memoryerror_null_call,$(TESTS))
68+
endif
69+
endif
70+
6171
include ../common.mak
6272

6373
$(ROOT)/line_trace.done: $(ROOT)/line_trace$(DOTEXE)

0 commit comments

Comments
 (0)