test: fix autotest list
authorRami Rosen <ramirose@gmail.com>
Mon, 11 Feb 2019 18:38:59 +0000 (20:38 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 12 Feb 2019 11:26:48 +0000 (12:26 +0100)
commitc652031bf46709a3a9e7bda21722ad7627f7944e
tree518b3fa0e72592fceffc73dd5101daaec728e749
parent146e57627f4b53dbdeecea3ee1f36f185cb55661
test: fix autotest list

This patch fixes a broken build; when running
make test
we get the following error:
...
Traceback (most recent call last):
  File "test/test/autotest.py", line 49, in <module>
    num_fails = runner.run_all_tests()
  File "test/test/autotest_runner.py", line 345, in run_all_tests
    self.parallel_tests)
  File "test/test/autotest_runner.py", line 264, in __filter_test
    test_cmd = test["Command"]
KeyError: 'Command'
...
The reason is that the pdump autotest entry uses "Comamnd"
instead of "Command"; this patch fixes it.

Bugzilla ID: 205
Fixes: 086eb64db39e ("test/pdump: add unit test for pdump library")
Cc: stable@dpdk.org
Signed-off-by: Rami Rosen <ramirose@gmail.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
test/test/autotest_data.py