-
Notifications
You must be signed in to change notification settings - Fork 342
Move (most of) No.Swiftmodule into a proper API test. #3895
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move (most of) No.Swiftmodule into a proper API test. #3895
Conversation
ifneq "$(CODESIGN)" "" | ||
$(CODESIGN) -s - "$(EXE)" | ||
endif | ||
else # OS = Linux | ||
$(EXE): $(MODULENAME).swiftmodule.o $(OBJECTS) | ||
@echo "### Linking" $(EXE) | ||
ifneq "$(EXCLUDE_WRAPPED_SWIFTMODULE)" "" | ||
ifneq "$(HIDE_SWIFTMODULE)" "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Turns out this was no longer used by any test...
e2f5261
to
3ee72f1
Compare
@swift-ci test |
3ee72f1
to
9ace5e1
Compare
@swift-ci test |
public enum WithPayload { | ||
case empty | ||
case with(i: Int) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a thought: should we include a multi-payload enum here, commented out, with a link to the radar?
@swift-ci test |
@swift-ci test |
9ace5e1
to
a4d90b3
Compare
@swift-ci test |
Testing debugging from just reflection metadata is very important on all platforms. Shell tests only run on the host. By migrating this test to an API test we can make sure this is also tested when debugging on iOS devices.
a4d90b3
to
dd1c41d
Compare
@swift-ci test |
1 similar comment
@swift-ci test |
Testing debugging from just reflection metadata is very important on
all platforms. Shell tests only run on the host. By migrating this
test to an API test we can make sure this is also tested when
debugging on iOS devices.