>From within a terminal, I type:

% echo (/dev/sdC0)
/dev/sdC0

% echo (/dev/sdC*)
/dev/sdC0 /dev/sdC0


% test -f /dev/sd*/swap
test: unexpected operator/operand: /dev/sdC0/swap



Older versions of 'test' do not complain about the unexpected operator/operand and worked in termrc.  But the recent version of "test" fails, as a result, the swap partition is not mounted.

/Myron