nixosTests.cfssl: handleTest -> runTest

This commit is contained in:
Sizhe Zhao 2025-06-07 19:40:09 +08:00
parent 4633acf70e
commit 1fe7725039
No known key found for this signature in database
GPG Key ID: ED1807251A7DA08F
2 changed files with 83 additions and 85 deletions

View File

@ -306,7 +306,7 @@ in
"x86_64-linux" "x86_64-linux"
] ./ceph-single-node-bluestore-dmcrypt.nix; ] ./ceph-single-node-bluestore-dmcrypt.nix;
certmgr = import ./certmgr.nix { inherit pkgs runTest; }; certmgr = import ./certmgr.nix { inherit pkgs runTest; };
cfssl = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./cfssl.nix { }; cfssl = runTestOn [ "aarch64-linux" "x86_64-linux" ] ./cfssl.nix;
cgit = runTest ./cgit.nix; cgit = runTest ./cgit.nix;
charliecloud = runTest ./charliecloud.nix; charliecloud = runTest ./charliecloud.nix;
chromadb = runTest ./chromadb.nix; chromadb = runTest ./chromadb.nix;

View File

@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ pkgs, ... }: { pkgs, ... }:
{ {
name = "cfssl"; name = "cfssl";
@ -86,4 +85,3 @@ import ./make-test-python.nix (
machine.succeed("ls /tmp/certificate-key.pem") machine.succeed("ls /tmp/certificate-key.pem")
''; '';
} }
)