Versions Compared

Key

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

...

Panel
titleenv, envdefinitions | String

Comma separated environment definitions passed to the test environment. For definitions requiring spaces, enclose them in quotations.

NOTE: Be very careful setting environment variables directly (for example OSTFSTYPE=zfs) because Autotest creates a config file based on the environment it builds. If you ask for something at odds with Autotest's expectations you will see failure instead of success.  In this case, for example, you should use the filesystemtype keyword described on this page. Autotest will then create the appropriate environment variables, the same is true for other things like ostcount instead of OSTCOUNT, ostsizegb instead of OSTSIZE, etc. Only use the env parameter when a direct variable is not listed here.

Code Block
themeMidnight
env=SLOW=yes
envdefinitions=SLOW=yes

# multiple definitions, one with spaces that must be enclosed in quotations
env=SLOW=yes,SANITY_EXCEPT="101g 102i"
Panel
titlefacet | String

Used to specify which node should run the test framework. Default is client1.

Valid values: mds1, oss1, client2, etc.

Code Block
themeMidnight
# specify mds1 as the facet
facet=mds1

# invalid facet value, will cause an error message to be posted to the Gerrit review
mdscount=1 facet=mds2
Panel
titlefailover | Boolean

Setup cluster in failover configuration

Valid values: true, false (no value is the same as true)

Code Block
themeMidnight
# enable failover
failover
# or
failover=true

# disable failover setup
failover=false

...