mirror of
https://github.com/open-quantum-safe/liboqs.git
synced 2025-10-09 00:04:26 -04:00
17 lines
478 B
Bash
Executable File
17 lines
478 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# sudo apt-get install qemu
|
|
|
|
set -e
|
|
|
|
CHOST=arm-linux-gnueabi
|
|
|
|
qemu-arm -cpu cortex-a8 -L /usr/arm-linux-gnueabi tests/example_kem
|
|
qemu-arm -cpu cortex-a8 -L /usr/arm-linux-gnueabi tests/test_kem
|
|
|
|
# qemu-arm -cpu cortex-a8 -L /usr/arm-linux-gnueabi tests/example_sig
|
|
# qemu-arm -cpu cortex-a8 -L /usr/arm-linux-gnueabi tests/test_sig
|
|
|
|
qemu-arm -cpu cortex-a8 -L /usr/arm-linux-gnueabi tests/test_aes
|
|
qemu-arm -cpu cortex-a8 -L /usr/arm-linux-gnueabi tests/test_sha3
|