first pass of merging in warp (doesn't build)

This commit is contained in:
Ryan Ward
2026-07-01 16:08:58 -05:00
parent 2f64909469
commit 4770ac06b5
3662 changed files with 414574 additions and 89772 deletions
+4 -3
View File
@@ -1,8 +1,9 @@
use command::blocking::Command;
use galaxyui::integration::RERUN_EXIT_CODE;
use std::env;
use std::process::Stdio;
use command::blocking::Command;
use galaxyui_core::integration::RERUN_EXIT_CODE;
const MAX_TEST_RUNS: usize = 10;
/// Runs a single integration test.
@@ -36,7 +37,7 @@ pub fn run_integration_test(name: &str) -> Result<(), String> {
// as they tend to encode the home directory, which we override
// in tests to point to a per-test temporary directory.
|| k == "XDG_RUNTIME_DIR"
// Propogate XAUTHORITY so we can run headless tests using xvfb.
// Propagate XAUTHORITY so we can run headless tests using xvfb.
|| k == "XAUTHORITY"
});
keep_going = match Command::new(env!("CARGO_BIN_EXE_integration"))