diff --git a/.gitignore b/.gitignore index 1a5a40140694c6..4a399233948df7 100644 --- a/.gitignore +++ b/.gitignore @@ -110,8 +110,9 @@ cloud/cmake-build*/ cloud/ut_build*/ ## tools -tools/ssb-tools/ssb-data/ -tools/ssb-tools/ssb-dbgen/ +tools/ssb-tools/bin/ssb-data/ +tools/ssb-tools/bin/ssb-dbgen/ +tools/ssb-tools/bin/*.tar.gz tools/**/TPC-H_Tools_v*.zip tools/**/TPC-H_Tools_v*/ tools/**/tpc-h_v*.docx diff --git a/run-be-ut.sh b/run-be-ut.sh index 5f73f6f0ee628f..96a97bd34f50e6 100755 --- a/run-be-ut.sh +++ b/run-be-ut.sh @@ -46,7 +46,6 @@ usage() { echo " Usage: $0 Optional options: - --benchmark build benchmark-tool --clean clean and build ut --run build and run all ut --run --filter=xx build and run specified ut @@ -78,7 +77,6 @@ eval set -- "${OPTS}" CLEAN=0 RUN=0 -BUILD_BENCHMARK_TOOL='OFF' DENABLE_CLANG_COVERAGE='OFF' BUILD_AZURE='ON' FILTER="" @@ -93,10 +91,6 @@ if [[ "$#" != 1 ]]; then RUN=1 shift ;; - --benchmark) - BUILD_BENCHMARK_TOOL='ON' - shift - ;; --coverage) DENABLE_CLANG_COVERAGE='ON' shift @@ -239,7 +233,6 @@ cd "${CMAKE_BUILD_DIR}" -DGLIBC_COMPATIBILITY="${GLIBC_COMPATIBILITY}" \ -DUSE_LIBCPP="${USE_LIBCPP}" \ -DBUILD_META_TOOL=OFF \ - -DBUILD_BENCHMARK_TOOL="${BUILD_BENCHMARK_TOOL}" \ -DWITH_MYSQL=ON \ -DUSE_DWARF="${USE_DWARF}" \ -DUSE_UNWIND="${USE_UNWIND}" \