diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2016-08-15 15:37:41 +0200 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2016-08-15 15:37:41 +0200 |
commit | 7d4c495489ffa299118e3586d94d3a02af13a810 (patch) | |
tree | aaf87aeff1ae7328c1acb710acd9b619866d6626 /test.sh | |
parent | 4758a8c13add7b04eda596595c7d192ffad9c3d5 (diff) |
Diffstat (limited to 'test.sh')
-rwxr-xr-x | test.sh | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -0,0 +1,31 @@ +#!/bin/bash + +set -e + +echo "##########################################" +echo "# Flashing cli-test HSM firmware" +echo "##########################################" +./bin/flash-target firmware/cli-test +./bin/reset +sleep 5 + +echo "##########################################" +echo "# Checking FPGA" +echo "##########################################" +./bin/cryptech_runcmd --username ct "show fpga cores" + +echo "##########################################" +echo "# Testing SDRAM FMC bus" +echo "##########################################" +./bin/cryptech_runcmd --username ct --timeout 20 "test sdram" + +echo "##########################################" +echo "# Uploading FMC test bitstream" +echo "##########################################" +./bin/cryptech_upload --fpga --username ct -i firmware/alpha_fmc_top.bit + +echo "##########################################" +echo "# Testing FPGA FMC bus" +echo "##########################################" +./bin/cryptech_runcmd --username ct --timeout 20 "test fmc" + |