Disable wildcards when checking for unsupported components

Otherwise $COMMAND_LINE_COMPONENTS would try to expand wildcard patterns
based on files in the current directory.

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh
index 6cdc922..4dfbaec 100755
--- a/tests/scripts/all.sh
+++ b/tests/scripts/all.sh
@@ -444,7 +444,9 @@
 
     if [ $all_except -eq 0 ]; then
         unsupported=0
+        set -f
         for component in $COMMAND_LINE_COMPONENTS; do
+            set +f
             case $component in
                 *[*?\[]*) continue;;
             esac
@@ -455,6 +457,7 @@
                     unsupported=$((unsupported + 1));;
             esac
         done
+        set +f
         if [ $unsupported -ne 0 ]; then
             exit 2
         fi