From a23c187674a5200e74d70a39913edcf4d3437713 Mon Sep 17 00:00:00 2001 From: kailixu Date: Thu, 8 Aug 2024 16:55:17 +0800 Subject: [PATCH] enh: rename passwdTest --- source/client/test/CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/client/test/CMakeLists.txt b/source/client/test/CMakeLists.txt index 8e7056821d..c8b13f6532 100644 --- a/source/client/test/CMakeLists.txt +++ b/source/client/test/CMakeLists.txt @@ -29,9 +29,9 @@ TARGET_LINK_LIBRARIES( # PUBLIC os util common transport monitor parser catalog scheduler function gtest taos_static qcom executor #) -ADD_EXECUTABLE(passwdTest ../../../tests/script/api/passwdTest.c) +ADD_EXECUTABLE(userOperTest ../../../tests/script/api/passwdTest.c) TARGET_LINK_LIBRARIES( - passwdTest + userOperTest PUBLIC taos ) @@ -70,6 +70,6 @@ add_test( # ) add_test( - NAME passwdTest - COMMAND passwdTest + NAME userOperTest + COMMAND userOperTest )