diff options
author | Jean-Marc Valin <jmvalin@jmvalin.ca> | 2022-06-28 01:13:16 -0400 |
---|---|---|
committer | Jean-Marc Valin <jmvalin@jmvalin.ca> | 2022-06-28 01:13:16 -0400 |
commit | d7d4b3487f9b352942d868d056cba520fc4346c7 (patch) | |
tree | 80e5bde36868c54ff2140dc7b91ebd3d9ba58d32 /tests | |
parent | 31b922e79cbaad7b5143c044ce58b01b4a9be7f8 (diff) | |
download | opus-d7d4b3487f9b352942d868d056cba520fc4346c7.tar.gz |
Fixes --disable-rtcd
Make sure we don't try to use the rtcd table when rtcd is disabled.
That code still needs a lot more cleaning up.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/random_config.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/random_config.sh b/tests/random_config.sh index fe68f5e7..e5d72833 100755 --- a/tests/random_config.sh +++ b/tests/random_config.sh @@ -51,8 +51,8 @@ arithmetic=`echo -e "\n--enable-fixed-point\n--enable-fixed-point --enable-fixed custom=`echo -e "\n--enable-custom-modes" | shuf -n1` -#asm=`echo -e "\n--disable-asm\n--disable-rtcd\n--disable-intrinsics" | shuf -n1` -asm=`echo -e "\n--disable-asm\n--disable-intrinsics" | shuf -n1` +asm=`echo -e "\n--disable-asm\n--disable-rtcd\n--disable-intrinsics" | shuf -n1` +#asm=`echo -e "\n--disable-asm\n--disable-intrinsics" | shuf -n1` assert=`echo -e "\n--enable-assertions" | shuf -n1` harden=`echo -e "\n--enable-hardening" | shuf -n1` |