eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

crash.test 419B

1234567891011121314151617
  1. #!/bin/sh
  2. # include common script
  3. . "`dirname $0`/common"
  4. test_crash() {
  5. TEST_NAME=$1
  6. echo "testing CVE-${TEST_NAME}"
  7. ESPEAK_DATA_PATH=`pwd` LD_LIBRARY_PATH=src:${LD_LIBRARY_PATH} \
  8. $VALGRIND src/espeak-ng -f "$(dirname $0)/crash_vectors/${TEST_NAME}.txt" -w /dev/null || exit 1
  9. }
  10. test_crash cve-2023-49990
  11. test_crash cve-2023-49991
  12. test_crash cve-2023-49992
  13. test_crash cve-2023-49993
  14. test_crash cve-2023-49994