Merge pull request #10244 from muxi/more-test-information
Use xcpretty to provide better test information
This commit is contained in:
commit
da4cf9dacd
|
|
@ -49,26 +49,6 @@
|
|||
</Test>
|
||||
</SkippedTests>
|
||||
</TestableReference>
|
||||
<TestableReference
|
||||
skipped = "NO">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "5E8A5DA31D3840B4000F8BC4"
|
||||
BuildableName = "CoreCronetEnd2EndTests.xctest"
|
||||
BlueprintName = "CoreCronetEnd2EndTests"
|
||||
ReferencedContainer = "container:Tests.xcodeproj">
|
||||
</BuildableReference>
|
||||
</TestableReference>
|
||||
<TestableReference
|
||||
skipped = "NO">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "5EAD6D231E27047400002378"
|
||||
BuildableName = "CronetUnitTests.xctest"
|
||||
BlueprintName = "CronetUnitTests"
|
||||
ReferencedContainer = "container:Tests.xcodeproj">
|
||||
</BuildableReference>
|
||||
</TestableReference>
|
||||
</Testables>
|
||||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
|
|
|
|||
|
|
@ -57,6 +57,4 @@ xcodebuild \
|
|||
build \
|
||||
-workspace *.xcworkspace \
|
||||
-scheme $SCHEME \
|
||||
-destination name="iPhone 6" \
|
||||
| egrep "$XCODEBUILD_FILTER" \
|
||||
| egrep -v "(GPBDictionary|GPBArray)" -
|
||||
-destination name="iPhone 6" | xcpretty
|
||||
|
|
|
|||
|
|
@ -58,14 +58,22 @@ xcodebuild \
|
|||
-workspace Tests.xcworkspace \
|
||||
-scheme AllTests \
|
||||
-destination name="iPhone 6" \
|
||||
test \
|
||||
| egrep "$XCODEBUILD_FILTER" \
|
||||
| egrep -v "(GPBDictionary|GPBArray)" -
|
||||
test | xcpretty
|
||||
|
||||
xcodebuild \
|
||||
-workspace Tests.xcworkspace \
|
||||
-scheme CoreCronetEnd2EndTests \
|
||||
-destination name="iPhone 6" \
|
||||
test | xcpretty
|
||||
|
||||
xcodebuild \
|
||||
-workspace Tests.xcworkspace \
|
||||
-scheme CronetUnitTests \
|
||||
-destination name="iPhone 6" \
|
||||
test | xcpretty
|
||||
|
||||
xcodebuild \
|
||||
-workspace Tests.xcworkspace \
|
||||
-scheme InteropTestsRemoteWithCronet \
|
||||
-destination name="iPhone 6" \
|
||||
test \
|
||||
| egrep "$XCODEBUILD_FILTER" \
|
||||
| egrep -v "(GPBDictionary|GPBArray)" -
|
||||
test | xcpretty
|
||||
|
|
|
|||
Loading…
Reference in New Issue