lilliput-ae-reference-implementation

Implementations of Lilliput-AE submitted to the NIST LWC standardization process
git clone https://git.kevinlegouguec.net/lilliput-ae-reference-implementation
Log | Files | Refs | README

commit fad848887249da22a83e4f35dab3d80f8c590d4d
parent cac916e13cc39b95a95b90352fe0f7a6fa6734f7
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Sun, 24 Mar 2019 14:15:56 +0100

[implem-python] Ajustement du script de test Python

De sorte à ce qu'on puisse le lancer depuis n'importe quel dossier.

Diffstat:
Mtest/python.sh | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/test/python.sh b/test/python.sh @@ -2,5 +2,7 @@ set -eu -./python/generate-vectors.sh -./python/compare.sh +TEST_DIR=$(dirname $0) + +${TEST_DIR}/python/generate-vectors.sh +${TEST_DIR}/python/compare.sh