add verification of 'remote_attestation' sample to the VM validation extention

This commit is contained in:
Dmitry Shmulevich 2018-09-11 16:49:27 -07:00
Родитель bc5798eea2
Коммит 257229739c
1 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -29,8 +29,11 @@ trap "rm -rf \"${tempdir}\"" EXIT
cp -r /opt/openenclave/share/openenclave/samples/ $tempdir
# build and run helloworld
cd $tempdir/samples/helloworld
make
make run
for sample in helloworld remote_attestation; do
echo "verifying $sample"
cd $tempdir/samples/$sample
make
make run
done
echo "open-enclave validation succedded"