Fix all-platform validation blockers

This commit is contained in:
2026-06-16 10:26:07 +02:00
parent 4a5bb68fe2
commit 6a9c415d85
9 changed files with 29 additions and 20 deletions

View File

@@ -46,7 +46,7 @@ void dispatch_plan_handles_target_thread_with_rejection_flag(pp::tests::Harness&
PP_EXPECT(harness, !plan.remove_matching_unique_task);
PP_EXPECT(harness, !plan.notify_worker);
PP_EXPECT(harness, !plan.wait_for_completion);
PP_EXPECT(harness, !plan.request_redraw);
PP_EXPECT(harness, plan.request_redraw);
PP_EXPECT(harness, !plan.reject_unsafe_cross_thread_dispatch);
}
}
@@ -85,4 +85,3 @@ int main()
harness.run("dispatch plan rejects unsafe cross-thread work under load", dispatch_plan_rejects_cross_thread_mutations_under_pressure);
return harness.finish();
}