Skip to content
Snippets Groups Projects
Commit 680e3312 authored by Simon Glass's avatar Simon Glass
Browse files

binman: Rename tests to ftest


At present these tests use the same filename as patman. This adds
confusion when running all tests, since error messages look very similar.
In fact binman tries to run the wrong tests at present.

Rename the tests.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 00ebd1f7
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ def RunTests(): ...@@ -34,7 +34,7 @@ def RunTests():
"""Run the functional tests and any embedded doctests""" """Run the functional tests and any embedded doctests"""
import entry_test import entry_test
import fdt_test import fdt_test
import func_test import ftest
import test import test
import doctest import doctest
...@@ -44,7 +44,7 @@ def RunTests(): ...@@ -44,7 +44,7 @@ def RunTests():
suite.run(result) suite.run(result)
sys.argv = [sys.argv[0]] sys.argv = [sys.argv[0]]
for module in (func_test.TestFunctional, fdt_test.TestFdt, for module in (ftest.TestFunctional, fdt_test.TestFdt,
entry_test.TestEntry): entry_test.TestEntry):
suite = unittest.TestLoader().loadTestsFromTestCase(module) suite = unittest.TestLoader().loadTestsFromTestCase(module)
suite.run(result) suite.run(result)
......
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment