소스 검색

Fix test_symbol_namespace

tags/v0.0.1
Thom Wiggers 4 년 전
committed by Kris Kwiatkowski
부모
커밋
7bc63d020b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      test/test_symbol_namespace.py

+ 2
- 2
test/test_symbol_namespace.py 파일 보기

@@ -33,14 +33,14 @@ def test_symbol_namespaces(implementation, impl_path, test_dir, init, destr):
lines = out.strip().split("\n")
symbols = []
for line in lines:
if ' T ' in line or ' D ' in line or ' S ' in line:
if line.startswith("00"):
symbols.append(line)

namespace = implementation.namespace_prefix()
non_namespaced = []
for symbolstr in symbols:
*_, symtype, symbol = symbolstr.split()
if symtype in 'TR':
if symtype in 'TDRS':
if not (symbol.startswith(namespace) or
symbol.startswith('_' + namespace) or
# KeccakP-1600 for AVX2


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