mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-22 23:48:58 +00:00
Split tests into primitives
This ensures separate errors for separate common files
This commit is contained in:
parent
f4607265c6
commit
5d600a2543
@ -12,9 +12,13 @@ import helpers
|
||||
def test_common():
|
||||
for d in os.listdir('common'):
|
||||
primitive = re.sub(r"\.c$", "", d)
|
||||
binname = os.path.join('..', 'bin', 'test_'+primitive)
|
||||
helpers.make(binname)
|
||||
helpers.run_subprocess([binname])
|
||||
yield check_common, primitive
|
||||
|
||||
|
||||
def check_common(primitive):
|
||||
binname = os.path.join('..', 'bin', 'test_'+primitive)
|
||||
helpers.make(binname)
|
||||
helpers.run_subprocess([binname])
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
Loading…
Reference in New Issue
Block a user