Merge pull request #114 from PQClean/sanitizer_fixes

Clean up some aspects of the tests and made NTRU-HPS code files not executable.
Cette révision appartient à :
Thom Wiggers 2019-04-16 13:37:13 +02:00 révisé par GitHub
révision f17d739181
Signature inconnue de Gitea
ID de la clé GPG: 4AEE18F83AFDEB23
16 fichiers modifiés avec 20 ajouts et 17 suppressions

0
crypto_kem/ntruhps2048509/clean/api.h Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/crypto_sort.c Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/crypto_sort.h Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/kem.c Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/owcpa.c Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/owcpa.h Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/pack3.c Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/packq.c Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/params.h Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/poly.c Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/poly.h Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/sample.c Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/sample.h Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/verify.c Fichier exécutable → Fichier normal
Voir le fichier

0
crypto_kem/ntruhps2048509/clean/verify.h Fichier exécutable → Fichier normal
Voir le fichier

Voir le fichier

@ -53,29 +53,32 @@ def check_functest_sanitizers(implementation):
else:
print("Supported platform: {}".format(platform.machine()))
helpers.ensure_available('valgrind')
helpers.make('clean-scheme', 'functest',
TYPE=implementation.scheme.type,
SCHEME=implementation.scheme.name,
IMPLEMENTATION=implementation.name,
EXTRAFLAGS='-fsanitize=address,undefined',
EXTRAFLAGS='-g -fsanitize=address,undefined',
working_dir=os.path.join('..', 'test'),
env=env)
helpers.run_subprocess(
[os.path.join('..', 'bin', 'functest_{}_{}{}'.format(
implementation.scheme.name,
implementation.name,
'.exe' if os.name == 'nt' else ''
))],
os.path.join('..', 'bin'),
env=env,
)
# Remove files with ASAN library compiled in
helpers.make('clean-scheme',
TYPE=implementation.scheme.type,
SCHEME=implementation.scheme.name,
IMPLEMENTATION=implementation.name,
working_dir=os.path.join('..', 'test'))
try:
helpers.run_subprocess(
[os.path.join('..', 'bin', 'functest_{}_{}{}'.format(
implementation.scheme.name,
implementation.name,
'.exe' if os.name == 'nt' else ''
))],
os.path.join('..', 'bin'),
env=env,
)
except AssertionError as e:
raise e
finally:
# Remove files with ASAN library compiled in
helpers.make('clean-scheme',
TYPE=implementation.scheme.type,
SCHEME=implementation.scheme.name,
IMPLEMENTATION=implementation.name,
working_dir=os.path.join('..', 'test'))
if __name__ == '__main__':