From 79a304a364711cbf562763f3de4d49f2af07f5e4 Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Wed, 7 May 2025 23:14:07 +0200 Subject: [PATCH] Replace ctest2 with ctest Fixes #2402 --- systest/Cargo.toml | 2 +- systest/build.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/systest/Cargo.toml b/systest/Cargo.toml index d1e55ac3f2..25a3258c93 100644 --- a/systest/Cargo.toml +++ b/systest/Cargo.toml @@ -9,7 +9,7 @@ libc = "0.2" openssl-sys = { path = "../openssl-sys" } [build-dependencies] -ctest2 = "0.4.7" +ctest = "0.4.11" [features] vendored = ['openssl-sys/vendored'] diff --git a/systest/build.rs b/systest/build.rs index fc970f410a..22fc6b836e 100644 --- a/systest/build.rs +++ b/systest/build.rs @@ -7,7 +7,7 @@ use std::env; mod cfgs; fn main() { - let mut cfg = ctest2::TestGenerator::new(); + let mut cfg = ctest::TestGenerator::new(); let target = env::var("TARGET").unwrap(); if let Ok(out) = env::var("DEP_OPENSSL_INCLUDE") {