Merge pull request #114 from PQClean/sanitizer_fixes

Clean up some aspects of the tests and made NTRU-HPS code files not executable.
Este commit está contenido en:
Thom Wiggers 2019-04-16 13:37:13 +02:00 cometido por GitHub
commit f17d739181
No se encontró ninguna clave conocida en la base de datos para esta firma
ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 16 ficheros con 20 adiciones y 17 borrados

0
crypto_kem/ntruhps2048509/clean/api.h Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/crypto_sort.c Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/crypto_sort.h Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/kem.c Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/owcpa.c Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/owcpa.h Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/pack3.c Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/packq.c Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/params.h Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/poly.c Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/poly.h Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/sample.c Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/sample.h Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/verify.c Archivo ejecutable → Archivo normal
Ver fichero

0
crypto_kem/ntruhps2048509/clean/verify.h Archivo ejecutable → Archivo normal
Ver fichero

Ver fichero

@ -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__':