nixosTests.bcachefs: migrate to runTest

Part of #386873
This commit is contained in:
Piotr Kwiecinski 2025-04-01 21:27:35 +02:00
parent a6a9f5f195
commit fe5391e180
No known key found for this signature in database
GPG key ID: EC0DE1CB9D5258B4
2 changed files with 36 additions and 38 deletions

View file

@ -227,7 +227,7 @@ in
ayatana-indicators = runTest ./ayatana-indicators.nix; ayatana-indicators = runTest ./ayatana-indicators.nix;
babeld = runTest ./babeld.nix; babeld = runTest ./babeld.nix;
bazarr = runTest ./bazarr.nix; bazarr = runTest ./bazarr.nix;
bcachefs = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./bcachefs.nix { }; bcachefs = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./bcachefs.nix;
beanstalkd = handleTest ./beanstalkd.nix { }; beanstalkd = handleTest ./beanstalkd.nix { };
bees = handleTest ./bees.nix { }; bees = handleTest ./bees.nix { };
benchexec = handleTest ./benchexec.nix { }; benchexec = handleTest ./benchexec.nix { };

View file

@ -1,6 +1,5 @@
import ./make-test-python.nix ( { pkgs, ... }:
{ pkgs, ... }: {
{
name = "bcachefs"; name = "bcachefs";
meta.maintainers = with pkgs.lib.maintainers; [ Madouura ]; meta.maintainers = with pkgs.lib.maintainers; [ Madouura ];
@ -36,5 +35,4 @@ import ./make-test-python.nix (
"udevadm settle", "udevadm settle",
) )
''; '';
} }
)