Skip to content

Commit

Permalink
add test script for automaticlly run fpga test
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonMac committed Dec 26, 2019
1 parent b9f30d4 commit 9f98776
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
31 changes: 31 additions & 0 deletions zcash.test1.sh
Original file line number Diff line number Diff line change
@@ -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 changes: 20 additions & 0 deletions zcash_test.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 9f98776

Please sign in to comment.