Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Sample LUTF Config file

#!/bin/bash

#Key Exports

export master_HOST=onyx-15vm1

 export agent1_HOST=onyx-16vm1

export agent2_HOST=onyx-17vm1

export agent3_HOST=onyx-18vm1

export AGENTCOUNT=3

 

VERBOSE=true

  

# ports for LUTF Telnet connection

export MASTER_PORT=8494

export AGENT_PORT=8094

 

# script and result paths

script_DIR=$LUSTRE/tests/lutf/python/test/dlc/

output_DIR=$LUSTRE/tests/lutf/python/tests/

 

...

A sample result YAML file from Auster
results.yml

 

 

Sample LUTF result YAML file

TestGroup:

    test_group: review-ldiskfs

    testhost: trevis-13vm5

    submission: Mon May  8 15:54:41 UTC 2017

    user_name: root

autotest_result_group_id: 5e11dc5b-7dd7-48a1-b4a3-74a333acd912

test_sequence: 1

test_index: 10

session_group_id: cfeff6b3-60fc-438a-88ef-68e65a08694f

enforcing: true

triggering_build_number: 45090

triggering_job_name: lustre-reviews

total_enforcing_sessions: 5

code_review:

 type: Gerrit

 url: review.whamcloud.com

 project: fs/lustre-release

 branch: multi-rail

 identifiers:

 - id: 3fbd25eb0fe90e4f34e36bad006c73d756ef8499

issue_tracker:

 type: Jira

 url: jira.hpdd.intel.com

 identifiers:

 - id: LU-9119

Tests:

-

        name: dlc

        description: lutf dlc

        submission: Mon May  8 15:54:43 UTC 2017

        report_version: 2

result_path: lustre-release/lustre/tests/lutf/python/tests/

        SubTests:

        -

            name: test_01

            status: PASS

            duration: 2

            return_code: 0

            error:

        -

            name: test_02

            status: PASS

            duration: 2

            return_code: 0

            error:

        duration: 5

        status: PASS

-

        name: multi-rail

        description: lutf multi-rail

        submission: Mon May  8 15:59:43 UTC 2017

        report_version: 2

result_path: lustre-release/lustre/tests/lutf/python/tests/

        SubTests:

        -

            name: test_01

            status: PASS

            duration: 2

            return_code: 0

            error:

        -

            name: test_02

            status: PASS

            duration: 2

            return_code: 0

            error:

duration: 5

        status: PASS

 

 Maloo

  1. A separate section is to be created in Maloo to display LUTF test results.
  2. The results from output YAML file passed from AT are displayed in the LUTF results section.
  3. A Test-parameter specifically for LUTF tests to be defined that will allow to run only LUTF tests. This will help in avoiding unnecessary tests to run for only LNet related changes.

...