cryptography ip-cores in vhdl / verilog
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
234 B

  1. #!/usr/bin/env sh
  2. set -e
  3. cd $(dirname "$0")/..
  4. run_sim() {
  5. echo "::group::Test $1"
  6. cd "$1"/sim/vhdl
  7. $MAKE sim
  8. cd ../../..
  9. echo '::endgroup::'
  10. }
  11. for item in aes cbcdes cbcmac_des cbctdes des tdes; do
  12. run_sim $item
  13. done