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"
] ./ceph-single-node-bluestore-dmcrypt.nix;
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;
charliecloud = runTest ./charliecloud.nix;
chromadb = runTest ./chromadb.nix;

View File

@ -1,6 +1,5 @@
import ./make-test-python.nix (
{ pkgs, ... }:
{
{ pkgs, ... }:
{
name = "cfssl";
nodes.machine =
@ -85,5 +84,4 @@ import ./make-test-python.nix (
machine.wait_until_succeeds("${cfsslrequest}")
machine.succeed("ls /tmp/certificate-key.pem")
'';
}
)
}