소스 검색

Fix isolation in test_metadata_sizes (#258)

master
Thom Wiggers 5 년 전
committed by Matthias J. Kannwischer
부모
커밋
770a421c16
1개의 변경된 파일9개의 추가작업 그리고 8개의 파일을 삭제
  1. +9
    -8
      test/test_metadata_sizes.py

+ 9
- 8
test/test_metadata_sizes.py 파일 보기

@@ -17,21 +17,22 @@ import pqclean
def test_metadata_sizes(implementation, impl_path, test_dir, init, destr):
init()
metadata = implementation.scheme.metadata()
dest_dir = os.path.join(test_dir, 'bin')
helpers.make('printparams',
TYPE=implementation.scheme.type,
SCHEME=implementation.scheme.name,
IMPLEMENTATION=implementation.name,
SCHEME_DIR=impl_path,
working_dir=os.path.join('..', 'test'))
DEST_DIR=dest_dir,
working_dir=os.path.join(test_dir, 'test'))

out = helpers.run_subprocess(
[os.path.join('..', 'bin', 'printparams_{}_{}{}'.format(
implementation.scheme.name,
implementation.name,
'.exe' if os.name == 'nt' else ''
))],
os.path.join('..', 'bin'),
).replace('\r', '')
[os.path.join(dest_dir, 'printparams_{}_{}{}'.format(
implementation.scheme.name,
implementation.name,
'.exe' if os.name == 'nt' else ''
))]
).replace('\r', '')

parsed = json.loads(out)



불러오는 중...
취소
저장