Posted: February 15th, 2010 | Author: TnT Admin | Filed under: Products | Tags: Licenses, Object Spy, QTP, VB Script, Windows | No Comments »
Quick Test Professional (QTP) is another product from HP/Mercury (originally from Mercury Interactive) that provides automated functional testing capabilities. The current version at the time of this writing is QTP version 10.0. Generally, QTP is a record and playback tool similar to LoadRunner. Although they look similar in terms of record and playback, they differ greatly in terms of what is recorded and what is playback. QTP identify and records objects on the windows and rewrite the process of launching the object in a script (VB). Example, QTP identifies and recognizes the click activity of the button on the web-browser or the web-application. However, LoadRunner records whatever request made after the button is clicked (although Web Click & Script protocol supports this). Read the rest of this entry »
Posted: January 29th, 2009 | Author: TnT Admin | Filed under: Concepts | Tags: processor, Windows | No Comments »
As we know, a multiprogramming OS switches the processor back and forth between all the program threads that are executing. When the current thread blocks, usually due to I/O, the Windows Scheduler finds another thread that is ready to run and schedules it for execution. If no threads are ready to run, Windows schedules a thread associated with the System Idle process to run instead. When an I/O operation completes, a blocked thread becomes eligible to run again. This scheme means that threads alternate back and forth between the two states: a ready state, where a thread is eligible to execute instructions, and a blocked state. A blocked thread is waiting for some system event that signals that the transition from waiting to ready can occur.
Read the rest of this entry »
Posted: January 24th, 2009 | Author: TnT Admin | Filed under: Concepts | Tags: processor, Windows | No Comments »
The Processor Queue Length counter in the System object is an extremely important indicator of processor performance. It is an instantaneous peek at the number of Ready threads that are currently waiting to run. Even though reporting processor utilization is much more popular, the Processor Queue Length is actually a more important indicator of a processor bottleneck. It shows that work is being delayed, and the delay is directly proportional to the length of the queue. Read the rest of this entry »
Posted: January 21st, 2009 | Author: TnT Admin | Filed under: Concepts | Tags: processor, Windows | No Comments »
Think of priority scheduling as the set of rules for ordering the Ready Queue, which is the internal data, structure that points to the threads that are ready to execute. A ready tread (from IE or any other application) transitions directly to the running state, where it executes if no other higher-priority threads are running or waiting. If there is another thread, the Windows Scheduler selects the highest-priority thread in the Ready Queue to run. Read the rest of this entry »
Posted: January 16th, 2009 | Author: TnT Admin | Filed under: Concepts | Tags: processor, Windows | No Comments »
Interrupts are subjected to priority. The interrupt priority scheme is hardware-determined, but in the interest of portability it is abstracted by the Windows HAL. During interrupt processing, interrupts from lower-priority interrupts are masked so that they remain pending until the current interrupt processing completes. Following interrupt processing during which interrupts themselves are disabled, the operation system returns to its normal operating mode with the processor reset once more to receive interrupt signals. The processor is once again enabled for interrupts.
Read the rest of this entry »