https://issues.apache.org/bugzilla/show_bug.cgi?id=53768

          Priority: P2
            Bug ID: 53768
          Assignee: [email protected]
           Summary: Counter increments if is under If controler with
                    condition set to false
          Severity: normal
    Classification: Unclassified
                OS: Windows XP
          Reporter: [email protected]
          Hardware: PC
            Status: NEW
           Version: 2.7
         Component: Main
           Product: JMeter

Created attachment 29269
  --> https://issues.apache.org/bugzilla/attachment.cgi?id=29269&action=edit
Jmeter script

version: 2.7 r1342410

Counter increments in situation described below:

var = 0

if (false)
   {
   if (true)
      {
      Counter(var)
      }
   }

after that var has a value set to 1

if we change this to:
var = 0
if (false)
   {
   BeanShell Sampler
   if (true)
      {
      Counter(var)
      }
   }

then it works correctly

I have attached jmeter script showing this bug

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to