Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

testcases: adding xfstests #336

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions lava_test_plans/testcases/xfstests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{% extends "testcases/templates/test.jinja2" %}

{% set test_name = test_name | default("xfstests") %}
{% set test_path_file = 'automated/linux/xfstests/xfstests.yaml' %}
{% set test_timeout = test_timeout | default(60) %}
{% set test_dev = test_dev | default("/dev/loop0") %}
{% set scratch_dev = scratch_dev | default("/dev/loop1") %}
{% set test_dir = test_dir | default("/mnt/test") %}
{% set scratch_dir = scratch_dir | default("/mnt/scratch") %}
{% set filesystem = filesystem | default("ext4") %}
{% set t_size = t_size | default("5G") %}
{% set s_size = s_size | default("8G") %}

{% block test_target %}
{{ super() }}
parameters:
SKIP_INSTALL: 'true'
TEST_DEV: '{{test_dev}}'
SCRATCH_DEV: '{{scratch_dev}}'
TEST_DIR: '{{test_dir}}'
SCRATCH_DIR: '{{scratch_dir}}'
FILESYSTEM: '{{filesystem}}'
T_SIZE: '{{t_size}}'
S_SIZE: '{{s_size}}'
{% endblock test_target %}
Loading