mirror of
https://github.com/sipeed/MaixCDK.git
synced 2026-09-10 21:59:54 -05:00
30 lines
627 B
Bash
Executable File
30 lines
627 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
python -m pip install -r ../../requirements.txt
|
|
|
|
chmod +x test_cases.sh
|
|
|
|
echo "
|
|
-----------------------------------
|
|
--- ---
|
|
--- test for board linux ---
|
|
--- ---
|
|
-----------------------------------
|
|
"
|
|
./test_cases.sh linux 1
|
|
echo "-- test for board linux end\n\n"
|
|
|
|
# echo "
|
|
# -----------------------------------
|
|
# --- ---
|
|
# --- test for board m2dock ---
|
|
# --- ---
|
|
# -----------------------------------
|
|
# "
|
|
# ./test_cases.sh m2dock 0
|
|
# echo "-- test for board m2dock end\n\n"
|
|
|