Commit c698b3b1e2 for aom

commit c698b3b1e2098584ef63834c9fa99edcdf5db903
Author: James Zern <jzern@google.com>
Date:   Wed Feb 18 14:02:57 2026 -0800

    examples.sh: exclude low_complexity_test w/realtime-only

    Follow up to:
      690c9eac47 examples.sh exclude low_complexity_mode_test w/realtime-only

    `exclude_list` uses the name of the test script, not the individual
    tests in the script.

    Change-Id: I231aeea2041473451e62e7cf4089f32cdd27bcfe

diff --git a/test/examples.sh b/test/examples.sh
index 94ae63d312..ecc9a2be5e 100755
--- a/test/examples.sh
+++ b/test/examples.sh
@@ -19,7 +19,7 @@ example_tests=$(ls -r $(dirname $0)/*.sh)
 exclude_list="best_encode examples run_encodes tools_common"

 if [ "$(realtime_only_build)" = "yes" ]; then
-  exclude_list="${exclude_list} twopass_encoder simple_decoder lightfield_test low_complexity_mode_test"
+  exclude_list="${exclude_list} twopass_encoder simple_decoder lightfield_test low_complexity_test"
 fi

 # Filter out the scripts in $exclude_list.