Merge pull request #114 from PQClean/sanitizer_fixes

Clean up some aspects of the tests and made NTRU-HPS code files not executable.
Bu işleme şunda yer alıyor:
Thom Wiggers 2019-04-16 13:37:13 +02:00 işlemeyi yapan: GitHub
işleme f17d739181
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: 4AEE18F83AFDEB23
16 değiştirilmiş dosya ile 20 ekleme ve 17 silme

0
crypto_kem/ntruhps2048509/clean/api.h Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/crypto_sort.c Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/crypto_sort.h Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/kem.c Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/owcpa.c Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/owcpa.h Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/pack3.c Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/packq.c Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/params.h Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/poly.c Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/poly.h Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/sample.c Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/sample.h Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/verify.c Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

0
crypto_kem/ntruhps2048509/clean/verify.h Çalıştırılabilir dosya → Normal dosya
Dosyayı Görüntüle

Dosyayı Görüntüle

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