Added external function to change parameters (SerialPortTypes.set_port_parameter(name,value,port))

Signed-off-by: Kubisch Daniel <daniel.kubisch@ericsson.com>
3 files changed
tree: 64fb8831553e929f0e4baeb7ffbf844372741dc6
  1. demo/
  2. src/
  3. .gitignore
  4. LICENSE
  5. README.md
  6. Serial.tpd
README.md

titan.TestPorts.Serial

Main project page:

https://projects.eclipse.org/projects/tools.titan

The source code of the TTCN-3 compiler and executor:

https://github.com/eclipse/titan.core

Usage

  • clone this repo to your computer in a folder (home_folder from now on)

  • Create a “bin” directory and cd into it

$ mkdir bin
$ cd ./bin
  • Create symlinks to all files in src and demo directory here
$ ln -s ../src/* .
$ ln -s ../demo/* .
  • Create the makefile
$ makefilegen -e "SerialPortTests" ./*
  • Compile the project
$ make
  • Adjust serial port properties in SerialPort.cfg

  • Run the tests

$ ttcn3_start SerialPortTests SerialPort.cfg

End