We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bc2ddd commit 51d0eedCopy full SHA for 51d0eed
runtime/druntime/test/exceptions/Makefile
@@ -58,6 +58,16 @@ endif
58
ifeq ($(OS),windows)
59
TESTS+=winstack
60
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
71
include ../common.mak
72
73
$(ROOT)/line_trace.done: $(ROOT)/line_trace$(DOTEXE)
0 commit comments