Random test generator: Difference between revisions

Content deleted Content added
Added external link to MicroTESK
short desc
Line 1:
{{Short description|Type of functional verification unit for hardware design}}
{{Use mdy dates|date=January 2019}}
{{Use American English|date=January 2019}}
{{Unreferenced|date=January 2019}}
'''Random test generators''' (often abbreviated RTG or ISG for Instruction Stream Generator) are a type of [[computer software]] that is used in [[functional verification]] of [[microprocessor]]s. Their primary use lies in providing input stimulus to a [[device under test]].
 
In a [[Logic simulation|simulation]]/[[Test bench|testbench]] verification environment, the simulator processes input created by the RTG and coverage monitors may be used to verify that the generator is properly testing the design.
 
Random test generators range in scope from simple [[Scripting language|scripts]] and parameterized [[Macro (computer science)|macrosmacro]]s that can be created in a matter of weeks to full featured systems requiring extensive software development. Random test generators are most often created by the designing organizations.
 
==Table Based Generators==
Table based test generators are the simplest RTGs available. Creation of such generators can be accomplished relatively quickly, and maintenance requirements are often low. These generators work by capturing knowledge of the design's [[Instructioninstruction set architecture|ISA]] knowledge and storing it in a [[relational database]] for later use. Because of their simplistic nature, table based generators may be used by less skilled personnel to create interesting tests. There is a drawback to these generators however, as their implementation is generally restricted to simple architectures. Usage on more complex ISAs may result in an inability to reach [[Cornercorner case|corner-cases]]s or create complex scenarios. Table based generators may also generate invalid tests at times.
 
==Static Generators==