From 32157159a2e3a5373f6bc79b8de5a01a8ae7963b Mon Sep 17 00:00:00 2001 From: "zhenshan.cao" Date: Thu, 24 Sep 2020 11:18:31 +0800 Subject: [PATCH] Fix bug:only need to add unittest when build with -u option Signed-off-by: zhenshan.cao --- go.mod | 2 +- proxy/CMakeLists.txt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 4a64d6813e..2539885201 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/czs007/suvlim -go 1.14 +go 1.15 require ( cloud.google.com/go/bigquery v1.4.0 // indirect diff --git a/proxy/CMakeLists.txt b/proxy/CMakeLists.txt index 7e0ac6f571..027e7a3dca 100644 --- a/proxy/CMakeLists.txt +++ b/proxy/CMakeLists.txt @@ -172,7 +172,6 @@ config_summary() add_subdirectory( thirdparty ) add_subdirectory( src ) -add_subdirectory(unittest) # Unittest lib if ( BUILD_UNIT_TEST STREQUAL "ON" )