Project

General

Profile

Actions

Wiki » History » Revision 2

« Previous | Revision 2/10 (diff) | Next »
Alexander Protsenko, 03/15/2023 02:32 PM


Wiki

Installation Steps

  1. Download and unpack a distribution package (the latest .tar.gz file).
    The destination directory will be further referred to as <INSTALL_DIR>.
  2. Set the MICROTESK_HOME environment variable to the <INSTALL_DIR> path (see Setting Environment Variables).
  3. Add the <INSTALL_DIR>/bin path to the PATH environment variable.
  4. If required, install SMT solver(s) to the <INSTALL_DIR>/tools directory (see Installing SMT Solvers).

You can learn more about Installation Directory Structure by following the link.

Next we will use the following directories:
  • arch - contains microprocessor specifications and test templates.
  • bin - contains scripts for model compilation and test generation

Test Program Generation

To generate the test program for the ARM architecture (model) and the bubble_sort template, run the following command:

$ cd $MICROTESK_HOME
$ sh bin/generate.sh armv8 arch/armv8/templates/bubble_sort.rb -dgp memory

The output file name depends on the --code-file-prefix and --code-file-extension options (see Command-Line Options).

Templates

The entire list of demo templates can be found in the directory: <INSTALL_DIR>/arch/armv8/templates.

$ cd $MICROTESK_HOME/arch/armv8/templates

Also you can use the run.sh script from this directory to generate the test program:

./run.sh branch_generation

The generated test program will be in this directory: $MICROTESK_HOME/output_test/branch_generation

cd $MICROTESK_HOME/output_test/branch_generation

Updated by Alexander Protsenko about 1 year ago · 2 revisions