Reading LTP shell code it uses strange for loop syntax:
for arg; do
TCID="${TCID}_$arg"
done
Run Code Online (Sandbox Code Playgroud)
$arg, separating with $IFS, but when trying $ arg="aa bb"; for arg; do echo $arg; done and it prints nothing.