Merge pull request #114 from PQClean/sanitizer_fixes

Clean up some aspects of the tests and made NTRU-HPS code files not executable.
このコミットが含まれているのは:
Thom Wiggers 2019-04-16 13:37:13 +02:00 committed by GitHub
コミット f17d739181
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23
16個のファイルの変更20行の追加17行の削除

0
crypto_kem/ntruhps2048509/clean/api.h 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/crypto_sort.c 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/crypto_sort.h 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/kem.c 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/owcpa.c 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/owcpa.h 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/pack3.c 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/packq.c 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/params.h 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/poly.c 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/poly.h 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/sample.c 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/sample.h 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/verify.c 実行可能ファイル → ノーマルファイル
ファイルの表示

0
crypto_kem/ntruhps2048509/clean/verify.h 実行可能ファイル → ノーマルファイル
ファイルの表示

ファイルの表示

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