Skip to content

Commit

Permalink
Disable OverBudgetAsync on x86 32-bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
bbernhar committed Jan 9, 2024
1 parent aa9ad29 commit 37ffed6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/end2end/D3D12ResidencyManagerTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -696,8 +696,8 @@ TEST_F(D3D12ResidencyManagerTests, OverBudget) {

// Keeps allocating until it goes over the OS provided budget.
TEST_F(D3D12ResidencyManagerTests, OverBudgetAsync) {
// TODO: Figure out why MSVC occasionally fails.
#if defined(GPGMM_COMPILER_MSVC)
// TODO: Figure out why x86 32-bit builders fail.
#if GPGMM_PLATFORM_IS(X86) && GPGMM_PLATFORM_IS(32_BIT)
GPGMM_SKIP_TEST_IF_DISABLED(true);
#endif

Expand Down

0 comments on commit 37ffed6

Please sign in to comment.