mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
13 lines
204 B
Bash
13 lines
204 B
Bash
bash make.sh
|
|
|
|
find build -name "*.gcda" -type f -delete
|
|
|
|
if [ $# == 0 ] ; then
|
|
build/test/pikascript_test
|
|
fi
|
|
|
|
if [ $# == 1 ] ; then
|
|
filter=$1
|
|
build/test/pikascript_test --gtest_filter=$filter
|
|
fi
|