| #![feature(arbitrary_self_types)] |
| #![feature(arbitrary_self_types_pointers)] |
| #![allow(clippy::needless_return)] |
|
|
| use anyhow::Result; |
| use turbo_tasks::{Completion, TryJoinIterExt, Vc, run_once}; |
| use turbo_tasks_testing::{Registration, register, run_with_tt}; |
|
|
| static REGISTRATION: Registration = register!(); |
|
|
| #[tokio::test(flavor = "multi_thread")] |
| async fn rectangle_stress() -> Result<()> { |
| let size = std::env::var("TURBOPACK_TEST_RECTANGLE_STRESS_SIZE") |
| .map(|size| size.parse().unwrap()) |
| .unwrap_or(50); |
| run_with_tt(®ISTRATION, move |tt| async move { |
| (0..size) |
| .map(|a| (a, size - 1)) |
| .chain((0..size - 1).map(|b| (size - 1, b))) |
| .map(|(a, b)| { |
| let tt = tt.clone(); |
| async move { |
| run_once(tt, async move { |
| rectangle(a, b).strongly_consistent().await?; |
| Ok(Vc::<()>::default()) |
| }) |
| .await |
| } |
| }) |
| .try_join() |
| .await?; |
| Ok(()) |
| }) |
| .await |
| } |
|
|
| |
| |
| #[turbo_tasks::function] |
| async fn rectangle(a: u32, b: u32) -> Result<Vc<Completion>> { |
| if a > 0 { |
| rectangle(a - 1, b).await?; |
| } |
| if b > 0 { |
| rectangle(a, b - 1).await?; |
| } |
| Ok(Completion::new()) |
| } |
|
|