Browse Source

Make sure tests respond to undefined behaviour

kyber
Thom Wiggers 4 years ago
committed by Kris Kwiatkowski
parent
commit
ea5ede6e80
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      test/test_functest.py

+ 3
- 1
test/test_functest.py View File

@@ -70,7 +70,9 @@ def test_functest_sanitizers(implementation, impl_path, test_dir,
TYPE=implementation.scheme.type,
SCHEME=implementation.scheme.name,
IMPLEMENTATION=implementation.name,
EXTRAFLAGS='-g -fsanitize=address,undefined',
EXTRAFLAGS=(
'-g -fsanitize=address,undefined '
'-fno-sanitize-recover=undefined'),
SCHEME_DIR=impl_path,
DEST_DIR=dest_dir,
working_dir=os.path.join(test_dir, 'test'),


Loading…
Cancel
Save