Skip to content
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

[PLAT-13234] disable fixture stripping #1716

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1061,6 +1061,8 @@
MARKETING_VERSION = 1.0.3;
PRODUCT_BUNDLE_IDENTIFIER = com.bugsnag.fixtures.macOSTestApp;
PRODUCT_NAME = "$(TARGET_NAME)";
STRIP_INSTALLED_PRODUCT = NO;
STRIP_SWIFT_SYMBOLS = NO;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_OBJC_BRIDGING_HEADER = ../shared/Bridge_InternalAPI.h;
SWIFT_OBJC_INTERFACE_HEADER_NAME = "macOSTestApp-Swift.h";
Expand Down Expand Up @@ -1094,6 +1096,8 @@
MARKETING_VERSION = 1.0.3;
PRODUCT_BUNDLE_IDENTIFIER = com.bugsnag.fixtures.macOSTestApp;
PRODUCT_NAME = "$(TARGET_NAME)";
STRIP_INSTALLED_PRODUCT = NO;
STRIP_SWIFT_SYMBOLS = NO;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_OBJC_BRIDGING_HEADER = ../shared/Bridge_InternalAPI.h;
SWIFT_OBJC_INTERFACE_HEADER_NAME = "macOSTestApp-Swift.h";
Expand Down
6 changes: 2 additions & 4 deletions features/release/barebone_tests.feature
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ Feature: Barebone tests
And the error payload field "events.0.threads" is an array with 0 elements
And the "isPC" of stack frame 0 is null
And the "isLR" of stack frame 0 is null
# TODO: Skipped pending PLAT-13234
# And the "method" of stack frame 0 matches "BareboneTestHandledScenario"
And the "method" of stack frame 0 matches "BareboneTestHandledScenario"
And the stacktrace is valid for the event

And I discard the oldest error
Expand Down Expand Up @@ -144,8 +143,7 @@ Feature: Barebone tests
And the exception "type" equals "cocoa"
And the "isPC" of stack frame 0 is null
And the "isLR" of stack frame 0 is null
# TODO: Skipped pending PLAT-13234
#And the "method" of stack frame 0 matches "BareboneTestHandledScenario"
And the "method" of stack frame 0 matches "BareboneTestHandledScenario"
And the stacktrace is valid for the event

@watchos
Expand Down
Loading