Installation Guide » History » Revision 73
« Previous |
Revision 73/115
(diff)
| Next »
Andrei Tatarnikov, 04/22/2015 05:51 PM
Installation Guide¶
- Table of contents
- Installation Guide
System Requirements¶
MicroTESK is a set of Java-based utilities that are run from the command line. It can be used on Windows, Linux and OS X machines that have JDK 1.7 or later installed. To build MicroTESK from source code or to build generated Java models, Apache Ant version 1.8 or later is required. To generate test data based on constraints, MicroTESK needs Microsoft Research Z3 that can work under the corresponding operating system.
Installation Steps¶
- Download from http://forge.ispras.ru/projects/microtesk/files and unpack the MicroTESK installation package (the
.tar.gz
file, latest release) to your computer. The folder to which it was unpacked will be further referred to as the installation directory (<installation dir>
). - [Not required for MicroTESK 2.1 beta] Download and install constraint solver tools to the
<installation dir>/tools
directory (see the Installing Constraint Solvers section). - Declare the MICROTESK_HOME environment variable and set its value to the path to the installation directory (see the Setting Environment Variables section).
- Set the
<installation dir>/bin
as the working directory (add the path to thePATH
environment variable) to be able to run MicroTESK utilities from any path. - Now you can run the
compile.sh
(or.bat
) script to create a microprocessor model and thegenerate.sh
(or.bat
) script to generate test for this model.
Setting Environment Variables¶
Windows¶
- Open the "System Properties" window.
- Switch to the "Advanced" tab.
- Click on Environment Variables.
- Click "New.." under "System Variables".
- In the "New System Variable" dialog specify variable name as
MICROTESK_HOME
and variable value as<installation dir>
. - Click "OK" on all open windows.
- Reopen the command prompt window.
Linux and OS X¶
Add the command below to the ~.bash_profile
file (Linux) or the ~/.profile
file (OS X):
export MICROTESK_HOME=<installation dir>To start editing the file, type
vi ~/.bash_profile
(or vi ~/.profile
). Changes will be applied after restarting the command-line terminal or reboot. You can also execute the command in your command-line terminal to make temporary changes.
Installing Constraint Solvers¶
To generate test data based on constraints, MicroTESK requires external constraint solvers. The current version supports the Z3 and CVC4 constraint solvers. Constraint executables should be downloaded and placed to the <installation dir>/tools
directory.
Installing Z3
- Windows users should download Z3 (32 or 64-bit version) from the following page: http://z3.codeplex.com/releases and unpack the archive to the
<installation dir>/tools/z3/windows
directory. Note: the executable file path is<windows>/z3/bin/z3.exe
.
- UNIX and Linux users should use one of the links below and and unpack the archive to the
<installation dir>/tools/z3/unix
directory. Note: the executable file path is<unix>/z3/bin/z3
.Debian x64 http://z3.codeplex.com/releases/view/101916 Ubuntu x86 http://z3.codeplex.com/releases/view/101913 Ubuntu x64 http://z3.codeplex.com/releases/view/101911 FreeBSD x64 http://z3.codeplex.com/releases/view/101907
- OS X users should download Z3 from http://z3.codeplex.com/releases/view/101918 and unpack the archive to the
<installation dir>/z3/osx
directory. Note: the executable file path is<osx>/z3/bin/z3
.
Installing CVC4
- Windows users should download the latest version of CVC4 binary from http://cvc4.cs.nyu.edu/builds/win32-opt/ and save it to the
<installation dir>/tools/cvc4/windows
directory ascvc4.exe
.
- UNIX and Linux should download the latest version of CVC4 binary from http://cvc4.cs.nyu.edu/builds/x86_64-linux-opt/unstable/ and save it to the
<installation dir>/tools/cvc4/unix
directory ascvc4
.
- OS X. TODO
Installation Directory Structure¶
The MicroTESK installation directory contains the following subdirectories:
arch |
Examples of microprocessor specifications and test templates for the described designs |
bin |
Scripts to run features of MicroTESK (modelling and test generation) |
doc |
Documentation on MicroTESK |
gen |
Generated Java models of the specified microprocessor designs |
lib |
JAR files and Ruby scripts to perform modelling and test generation tasks |
src |
Source code of MicroTESK |
Running MicroTESK¶
To generate a Java model of a microprocessor from its nML specification, a user needs to run the compile.sh script (Unix, Linux, OS X) or the compile.bat script (Windows). For example, the following command generates a model for the miniMIPS specification:
sh bin/compile.sh arch/minimips/model/minimips.nml
NOTE: Models for all demo specifications are already built and included in the MicroTESK distribution package. So a user can start working with MicroTESK from generating test programs for these models.
To generate a test program, a user needs to use the generate.sh script (Unix, Linux, OS X) or the generate.bat script (Windows). The scripts require the following parameters:
- model name;
- test template file;
- target test program source code file.
For example, the following command runs the euclid.rb
test template for the miniMIPS model generated by the command from the previous example and saves the generated test program to the test.asm
file:
sh bin/generate.sh minimips arch/minimips/templates/euclid.rb test.asm
Updated by Andrei Tatarnikov over 9 years ago · 115 revisions