From 93b3ec8392b37a0a3077e85d77856ed7c493970f Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 15 Mar 2021 17:32:13 -0400 Subject: [PATCH] switch to ctest2 --- 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 9f74f9732..50f6662a0 100644 --- a/systest/Cargo.toml +++ b/systest/Cargo.toml @@ -9,7 +9,7 @@ libc = "0.2" openssl-sys = { path = "../openssl-sys" } [build-dependencies] -ctest = "0.2" +ctest2 = "0.4" [features] vendored = ['openssl-sys/vendored'] diff --git a/systest/build.rs b/systest/build.rs index 3c549265f..5cf20bc24 100644 --- a/systest/build.rs +++ b/systest/build.rs @@ -5,7 +5,7 @@ use std::env; mod cfgs; fn main() { - let mut cfg = ctest::TestGenerator::new(); + let mut cfg = ctest2::TestGenerator::new(); let target = env::var("TARGET").unwrap(); if let Ok(out) = env::var("DEP_OPENSSL_INCLUDE") { -- GitLab