Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2022-06-28 08:13:16 +0300
committerJean-Marc Valin <jmvalin@jmvalin.ca>2022-06-28 08:13:16 +0300
commitd7d4b3487f9b352942d868d056cba520fc4346c7 (patch)
tree80e5bde36868c54ff2140dc7b91ebd3d9ba58d32 /tests
parent31b922e79cbaad7b5143c044ce58b01b4a9be7f8 (diff)
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-xtests/random_config.sh4
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`