Unverified Commit 8e729352 authored by kladko's avatar kladko

SKALE-2341 Added tags for older commits

parent e1bbcc0f
#!/bin/bash #!/bin/bash
set -e
set -v
source /opt/intel/sgxsdk/environment source /opt/intel/sgxsdk/environment
cd /usr/src/sdk; cd /usr/src/sdk;
if [ -f "/var/hwmode" ] if [ -f "/var/hwmode" ]
then then
echo "Running in SGX hardware mode"
jhid -d jhid -d
/opt/intel/sgxpsw/aesm/aesm_service & /opt/intel/sgxpsw/aesm/aesm_service &
pid=$! pid=$!
sleep 2 sleep 2
else
echo "Running in SGX simulation mode"
fi fi
echo $1
if [ "$1" = -t ]; then if [ "$1" = -t ]; then
set -e echo "Test run requested"
./testw [bls-key-encrypt] ./testw [bls-key-encrypt]
#./testw [bls-key-encrypt-decrypt] #./testw [bls-key-encrypt-decrypt]
#./testw [dkg-gen] #./testw [dkg-gen]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment