Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
guide:makefile [2024/07/22 08:48]
rajit
guide:makefile [2024/07/22 08:50] (current)
rajit [Standard test cases]
Line 56: Line 56:
 ===== Standard test cases ===== ===== Standard test cases =====
  
-The standard way to create test cases for tools that are run using the makefile is the following+Standard test cases can be run using: 
-   * All test cases and sample outputs are in the ''test/'' sub-directory. +<code> 
-   * Test cases are run by changing to the ''test/'' sub-directory and running the script ''run.sh''.+$ make runtest 
 +</code>
  
 +For this to work properly, create test cases for your tool in the following way:
 +   * All test cases and sample outputs are in the ''test/'' sub-directory.
 +   * Test cases are run by changing to the ''test/'' sub-directory and running the script ''run.sh''. If this script doesn't exist, then nothing happens.
 +Take a look at examples from existing ACT tools (e.g. ''[[https://github.com/asyncvlsi/actsim/tree/master/test|actsim]]'').