File: OTM.robot

package info (click to toggle)
geogram 1.9.6-1
  • links: PTS, VCS
  • area: contrib
  • in suites: sid
  • size: 15,436 kB
  • sloc: cpp: 143,890; ansic: 10,098; perl: 1,430; sh: 1,199; yacc: 522; lex: 182; python: 157; javascript: 149; makefile: 17
file content (21 lines) | stat: -rw-r--r-- 683 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
*** Settings ***
Test Setup        Prepare Test
Test Teardown     Cleanup Test
Force Tags        OTM    smoke_Standard    daily
Library           OperatingSystem
Library           String
Library           lib/VorpatestLibrary.py

*** Variables ***
${DATADIR}        %{VORPATEST_ROOT_DIR}${/}data${/}Tets

*** Test Cases ***
PetitCubeTets-PetiteSphereTets
    [Tags]    weekly_valgrind
    Run Test    PetitCubeTets.meshb    PetiteSphereTets.meshb

*** Keywords ***
Run Test
    [Arguments]    ${mesh1}    ${mesh2}    @{options}
    [Documentation]    Runs compute_OTM on 2 input meshes
    run command    compute_OTM    @{options}    ${DATADIR}${/}${mesh1}    ${DATADIR}${/}${mesh2}