Skip to content

Commit

Permalink
fix: Temporarily ignore failing x86 tests
Browse files Browse the repository at this point in the history
As suggested by @marklechtermann
  • Loading branch information
Carsten Igel committed Apr 30, 2024
1 parent f300219 commit 84d6bfe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/32bit/scripts/msbuild-acceptance-test.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -112,17 +112,17 @@ IF NOT "%ERRUNTIMEX64_NET80%" == "0" (
)

IF NOT "%ERRUNTIMEX86_NET48%" == "0" (
SET EXITCODE=1
::SET EXITCODE=1
ECHO "::warning file=%~dp0\..\comtestdotnet\comtestdotnet.csproj::Runtime specific acceptance test for platform x86 using .NET FullFramework 4.8 failed."
)

IF NOT "%ERRUNTIMEX86_NET80%" == "0" (
SET EXITCODE=1
::SET EXITCODE=1
ECHO "::warning file=%~dp0\..\comtestdotnet\comtestdotnet.csproj::Runtime specific acceptance test for platform x86 using .NET 8.0 failed."
)

IF NOT "%ERRUNTIMEX86_NET60%" == "0" (
SET EXITCODE=1
::SET EXITCODE=1
ECHO "::warning file=%~dp0\..\comtestdotnet\bin\x64\Release\net6.0\comtestdotnet.tlb::Runtime specific acceptance test for platform x64 using .NET 6.0 failed."
)

Expand All @@ -132,7 +132,7 @@ IF NOT EXIST %~dp0\..\comtestdotnet\bin\x64\Release\net6.0\comtestdotnet.tlb (
)

IF NOT EXIST %~dp0\..\comtestdotnet\bin\x86\Release\net6.0\comtestdotnet.tlb (
SET EXITCODE=1
::SET EXITCODE=1
ECHO "::warning file=%~dp0\..\comtestdotnet\bin\x86\Release\net6.0\comtestdotnet.tlb::Could not find exported TLB file for .NET 6 (x86)"
)

Expand All @@ -142,7 +142,7 @@ IF NOT EXIST %~dp0\..\comtestdotnet\bin\x64\Release\net48\comtestdotnet.tlb (
)

IF NOT EXIST %~dp0\..\comtestdotnet\bin\x86\Release\net48\comtestdotnet.tlb (
SET EXITCODE=1
::SET EXITCODE=1
ECHO "::warning file=%~dp0\..\comtestdotnet\bin\x86\Release\net48\comtestdotnet.tlb::Could not find exported TLB file for .NET 4.8 (x86)"
)

Expand All @@ -152,7 +152,7 @@ IF NOT EXIST %~dp0\..\comtestdotnet\bin\x64\Release\net8.0\comtestdotnet.tlb (
)

IF NOT EXIST %~dp0\..\comtestdotnet\bin\x86\Release\net8.0\comtestdotnet.tlb (
SET EXITCODE=1
::SET EXITCODE=1
ECHO "::warning file=%~dp0\..\comtestdotnet\bin\x86\Release\net8.0\comtestdotnet.tlb::Could not find exported TLB file for .NET 8 (x86)"
)

Expand Down

0 comments on commit 84d6bfe

Please sign in to comment.