pikapython/port/linux/fast_test.sh
lyon 165cc7d041 fix thread and socket on freertos
use pikaMalloc/Free inner platform_thread()

socket multithread test passed on linux

update

improve fast_test.sh
2023-02-14 19:37:30 +08:00

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