add test script for automaticlly run fpga test

This commit is contained in:
liangma 2019-12-26 06:11:29 +00:00
parent b9f30d44f4
commit 9f98776fae
2 changed files with 51 additions and 0 deletions

31
zcash.test1.sh Executable file
View File

@ -0,0 +1,31 @@
#!/bin/bash
### these are for AWS FPGA config ###
cd $AWS_FPGA_REPO_DIR && source sdk_setup.sh
echo "always be sure to source the sdk_setup.sh"
echo " "
### prepare FPGA image ###
echo -n "Do you need clear and reload the fpga AFI (Y/N)"
read input
if [[ $input = Y ]]; then
echo "clear the fpga AFI..."
sudo fpga-clear-local-image -S -0
echo " "
echo "reload the fpga AFI..."
sleep 3
sudo fpga-load-local-image -S 0 -I agfi-0ef71fd274fd5b46e
echo "If FPGA image load correctlly, it is ready for the test"
else
echo "Now you should be ready for FPGA test"
fi
### run FPGA test ###
cd ~/aws-fpga/hdk/cl/developer_designs/cl_zcash/software/runtime
echo "Ready for run Zcash FPGA test!"
sleep 2
echo " "
sleep 2
echo " "
sudo ./test_zcash

20
zcash_test.sh Executable file
View File

@ -0,0 +1,20 @@
### these are for AWS FPGA config ###
cd $AWS_FPGA_REPO_DIR && source sdk_setup.sh
echo "always be sure to source the sdk_setup.sh"
echo " "
echo "clear the fpga AFI..."
sudo fpga-clear-local-image -S -0
echo " "
echo "reload the fpga AFI..."
sleep 3
sudo fpga-load-local-image -S 0 -I agfi-0ef71fd274fd5b46e
echo "If FPGA image load correctlly, it is ready for the test"
cd ~/aws-fpga/hdk/cl/developer_designs/cl_zcash/software/runtime
echo "Ready for run Zcash FPGA test!"
sleep 2
echo " "
sleep 2
echo " "
sudo ./test_zcash