-
Notifications
You must be signed in to change notification settings - Fork 520
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mmptests] Update according to MSBuild changes.
- Loading branch information
1 parent
745c18c
commit 4362842
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -685,15 +685,15 @@ public void BuildingSameSolutionTwice_ShouldNotRunACToolTwice () | |
|
||
string project = TI.GenerateUnifiedExecutableProject (test); | ||
|
||
string buildOutput = TI.BuildProject (project, true, diagnosticMSBuild: true, useMSBuild: true); | ||
string buildOutput = TI.BuildProject (project, true); | ||
Assert.True (buildOutput.Contains ("actool execution started with arguments"), $"Initial build should run actool"); | ||
|
||
buildOutput = TI.BuildProject (project, true, diagnosticMSBuild: true, useMSBuild: true); | ||
buildOutput = TI.BuildProject (project, true); | ||
Assert.False (buildOutput.Contains ("actool execution started with arguments"), $"Second build should not run actool"); | ||
|
||
TI.RunAndAssert ("touch", Path.Combine (tmpDir, "Assets.xcassets/AppIcon.appiconset/[email protected]"), "touch icon"); | ||
|
||
buildOutput = TI.BuildProject (project, true, diagnosticMSBuild: true, useMSBuild: true); | ||
buildOutput = TI.BuildProject (project, true); | ||
Assert.True (buildOutput.Contains ("actool execution started with arguments"), $"Build after touching icon must run actool"); | ||
}); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters