Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Pfister <steveisok@users.noreply.github.com>2022-08-02 05:48:04 +0300
committerGitHub <noreply@github.com>2022-08-02 05:48:04 +0300
commitaac729ff906a31f327823587748687c0308a4043 (patch)
treee82aabf7e3956641afd8bebd26da2e492ec9435c /eng/testing
parent27a1a754b89705aaee0af327f1c48e9d6f78504b (diff)
[iOS] Remove unnecessary newline from CI script (#67861)
A newline was incorrectly added to the script that executes xharness, causing it to return a 0 exit code even if there was a crash. This caused CI to report a pass no matter what. The change also disables tests that were causing crashes.
Diffstat (limited to 'eng/testing')
-rw-r--r--eng/testing/tests.ioslike.targets5
1 files changed, 2 insertions, 3 deletions
diff --git a/eng/testing/tests.ioslike.targets b/eng/testing/tests.ioslike.targets
index c41a0d28e03..fd7e4a92938 100644
--- a/eng/testing/tests.ioslike.targets
+++ b/eng/testing/tests.ioslike.targets
@@ -25,11 +25,10 @@
<_AfterBuildCommands>
mv $XHARNESS_OUT/AOTBuild.binlog &quot;$HELIX_WORKITEM_UPLOAD_ROOT&quot;
sign &quot;$app&quot;
- xharness apple test --app &quot;$app&quot; --output-directory &quot;$output_directory&quot; --target &quot;$target&quot; --timeout &quot;$timeout&quot; --xcode &quot;$xcode_path&quot; -v --launch-timeout &quot;$launch_timeout&quot; $(_ResetSimulatorSwitch) $(_SignalAppEndSwitch) --
- </_AfterBuildCommands>
+ xharness apple test --app &quot;$app&quot; --output-directory &quot;$output_directory&quot; --target &quot;$target&quot; --timeout &quot;$timeout&quot; --xcode &quot;$xcode_path&quot; -v --launch-timeout &quot;$launch_timeout&quot; $(_ResetSimulatorSwitch) $(_SignalAppEndSwitch) -- </_AfterBuildCommands>
<RunScriptCommand>$(_AOTBuildCommand) $(_AfterBuildCommands)</RunScriptCommand>
- </PropertyGroup>
+ </PropertyGroup>
<Import Project="$(MonoProjectRoot)\msbuild\apple\build\AppleApp.props"
Condition="'$(BuildTestsOn)' == 'local'" />