[OpenSTA-users] Virtual users not heeding the Mutex
Brought to you by:
dansut
|
From: Hurkes, R. <rh...@fo...> - 2007-04-16 21:59:20
|
Hi all, I am trying to get my script to work and I am having issues
using the MUTEX function. I have a file called list.FRV which has 5
usernames in it. From the FAQ and the mailing list, I made sure my SET
is within the MUTEX, and I believe the scope is correct for what I'm
trying to do.
CHARACTER*512 fileuser, FILE =3D "list", SCRIPT
CHARACTER*100 user, LOCAL
ACQUIRE MUTEX "LOGIN"
NEXT fileuser
SET user =3D fileuser
LOG "User: ", user
RELEASE MUTEX "LOGIN"=09
=20
PRIMARY POST URI
When I run the test, I get in my log file "LOG: User: opensta," for all
of my virtual users. I want VU1 to take the first entry in list.FRV, VU2
to take the second entry in list.FRV, and so on.
|