ktest: Create variables for the ktest config files
authorSteven Rostedt <srostedt@redhat.com>
Fri, 20 May 2011 17:36:58 +0000 (13:36 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Fri, 20 May 2011 19:26:26 +0000 (15:26 -0400)
commit77d942ceacbad02d8498ac72ed8d634634057aec
tree172a166472e0a9082358f7b9cd59e1523ca2d8e9
parent27d934b28752b860cba6c0d77ea4598861d80998
ktest: Create variables for the ktest config files

I found that I constantly reuse information for each test case.
It would be nice to just define a variable to reuse.

For example I may have:

TEST_START
[...]
TEST = ssh root@mybox /path/to/my/script

TEST_START
[...]
TEST = ssh root@mybox /path/to/my/script

[etc]

The issue is, I may wont to change that script or one of the other
fields. Then I need to update each line individually.

With the addition of config variables (variables only used during parsing
the config) we can simplify the config files. These variables can
also be defined multiple times and each time the new value will
overwrite the old value.

The convention to use a config variable over a ktest option is to use :=
instead of =.

Now we could do:

USER := root
TARGET := mybox
TEST_SCRIPT := /path/to/my/script
TEST_CASE := ${USER}@${TARGET} ${TEST_SCRIPT}

TEST_START
[...]
TEST = ${TEST_CASE}

TEST_START
[...]
TEST = ${TEST_CASE}

[etc]

Now we just need to update the variables at the top.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
tools/testing/ktest/ktest.pl
tools/testing/ktest/sample.conf