I am trying to run jmeter(.jmx) file using Jenkins by passing Number of Threads as a Parameter. Build getting success but .jmx file is not running. And also not showing any error in console.Following are my setup
- In Jmeter Thread properties --Number of thread (Users)- ${__P(USERS,1)
- In Jenkins job Created build string parameter -- USER_COUNT
- Build using Execute shell and following is my command
cd /apache-jmeter-2.13/bin ./jmeter.sh -n -t /jmxFiles/Jbpm6Rest3Jenkins1.jmx -l /jmxFiles/SIP.jtl -JUSERS=%USER_COUNT% While starting build passing USER_COUNT value from Jenkins
Following is the Jenkins console output
Not sure where i am doing wrong.
Note: Not using Ant/Maven to run jmx file.