You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2022/04/14 03:45:39 UTC

[incubator-doris] branch master updated: [refactor](script) remove unused parament on run-be-ut.sh (#9000)

This is an automated email from the ASF dual-hosted git repository.

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new d161161767 [refactor](script) remove unused parament on run-be-ut.sh (#9000)
d161161767 is described below

commit d16116176772c8511d4f905b2c9fd57da45b8e3a
Author: Pxl <95...@qq.com>
AuthorDate: Thu Apr 14 11:45:35 2022 +0800

    [refactor](script) remove unused parament on run-be-ut.sh (#9000)
    
    parament -v is not work on run-be-ut.sh now.
---
 run-be-ut.sh | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/run-be-ut.sh b/run-be-ut.sh
index ffda8e14af..726411d944 100755
--- a/run-be-ut.sh
+++ b/run-be-ut.sh
@@ -43,7 +43,6 @@ Usage: $0 <options>
      --clean            clean and build ut
      --run              build and run all ut
      --run --filter=xx  build and run specified ut
-     -v                 build and run all vectorized ut
      -j                 build parallel
      -h                 print this help message
 
@@ -79,7 +78,6 @@ fi
 
 CLEAN=0
 RUN=0
-VECTORIZED_ONLY=0
 FILTER=""
 if [ $# != 1 ] ; then
     while true; do 
@@ -87,7 +85,6 @@ if [ $# != 1 ] ; then
             --clean) CLEAN=1 ; shift ;;
             --run) RUN=1 ; shift ;;
             -f | --filter) FILTER="--gtest_filter=$2"; shift 2;;
-            -v) VECTORIZED_ONLY=1 ; shift ;;
             -j) PARALLEL=$2; shift 2 ;;
             --) shift ;  break ;;
             *) usage ; exit 0 ;;
@@ -231,10 +228,6 @@ touch ${UT_TMP_DIR}/tmp_file
 
 # find all executable test files
 
-if [ ${VECTORIZED_ONLY} -eq 1 ]; then
-    echo "Run Vectorized ut only"
-    export DORIS_TEST_BINARY_DIR=${DORIS_TEST_BINARY_DIR}/vec
-fi
 test=${DORIS_TEST_BINARY_DIR}doris_be_test
 file_name=${test##*/}
 if [ -f "$test" ]; then


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org