mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
165cc7d041
use pikaMalloc/Free inner platform_thread() socket multithread test passed on linux update improve fast_test.sh
14 lines
256 B
Bash
14 lines
256 B
Bash
|
|
ROOT=$PWD
|
|
rm $(find build -name *.gcda) -f
|
|
cd build && rm ./test/pikascript_test -f && ninja -j0
|
|
cd $ROOT
|
|
if [ $# == 0 ] ; then
|
|
build/test/pikascript_test
|
|
fi
|
|
|
|
if [ $# == 1 ] ; then
|
|
filter=$1
|
|
build/test/pikascript_test --gtest_filter=$filter
|
|
fi
|