Skip to content

Commit

Permalink
scripts: Run integration tests in series
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Bradford <[email protected]>
  • Loading branch information
rbradford committed Jan 25, 2024
1 parent 844fc44 commit deef5fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/run_coreboot_integration_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ make -C $COREBOOT_DIR olddefconfig
make -C $COREBOOT_DIR -j"$(nproc)"

export RUST_BACKTRACE=1
cargo test --features "coreboot integration_tests" "integration::tests::linux::$arch"
cargo test --features "coreboot integration_tests" "integration::tests::linux::$arch" -- --test-threads=1
2 changes: 1 addition & 1 deletion scripts/run_integration_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ rustup component add rust-src
cargo build --release --target "$target.json" -Zbuild-std=core,alloc -Zbuild-std-features=compiler-builtins-mem

export RUST_BACKTRACE=1
time cargo test --features "integration_tests" "integration::tests::linux::$arch"
time cargo test --features "integration_tests" "integration::tests::linux::$arch" -- --test-threads=1

0 comments on commit deef5fd

Please sign in to comment.