Merge pull request #2150 from taosdata/feature/sangshuduo/make-python-valgrind-friendly
make python mallo memory valgrind friendly.
This commit is contained in:
commit
b02410cb14
|
@ -1,42 +1,42 @@
|
|||
#!/bin/bash
|
||||
# insert
|
||||
python3 ./test.py -g -f insert/basic.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
python3 ./test.py -g -f insert/int.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
python3 ./test.py -g -f insert/float.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
python3 ./test.py -g -f insert/bigint.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
python3 ./test.py -g -f insert/bool.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
python3 ./test.py -g -f insert/double.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
python3 ./test.py -g -f insert/smallint.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
python3 ./test.py -g -f insert/tinyint.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
python3 ./test.py -g -f insert/binary.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
python3 ./test.py -g -f insert/date.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
python3 ./test.py -g -f insert/nchar.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
python3 ./test.py -g -f insert/multi.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f insert/basic.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f insert/int.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f insert/float.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f insert/bigint.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f insert/bool.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f insert/double.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f insert/smallint.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f insert/tinyint.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f insert/binary.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f insert/date.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f insert/nchar.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f insert/multi.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
|
||||
# table
|
||||
python3 ./test.py -g -f table/column_name.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
python3 ./test.py -g -f table/column_num.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
python3 ./test.py -g -f table/db_table.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f table/column_name.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f table/column_num.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f table/db_table.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
|
||||
# import
|
||||
python3 ./test.py -g -f import_merge/importDataLastSub.py
|
||||
python3 ./test.py -g -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -f import_merge/importDataLastSub.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py -g -s && sleep 1
|
||||
|
||||
#tag
|
||||
python3 ./test.py $1 -f tag_lite/filter.py
|
||||
python3 ./test.py $1 -s && sleep 1
|
||||
PYTHONMALLOC=malloc python3 ./test.py $1 -f tag_lite/filter.py
|
||||
PYTHONMALLOC=malloc python3 ./test.py $1 -s && sleep 1
|
||||
|
|
Loading…
Reference in New Issue