The truth is that these tests never tested summary functionality, they test status functionality. It makes sense to rename them to what they are.
Signed-off-by: Dylan Baker <[email protected]> --- framework/tests/{summary.py => status.py} | 0 piglit-framework-tests.py | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename framework/tests/{summary.py => status.py} (100%) diff --git a/framework/tests/summary.py b/framework/tests/status.py similarity index 100% rename from framework/tests/summary.py rename to framework/tests/status.py diff --git a/piglit-framework-tests.py b/piglit-framework-tests.py index 796b1e1..aa4d9e6 100755 --- a/piglit-framework-tests.py +++ b/piglit-framework-tests.py @@ -24,11 +24,11 @@ import argparse import unittest -import framework.tests.summary +import framework.tests.status # Create a dictionary of all of tests. Do this before the parser so we can use # it as a list of optional arguments for the parser -tests = {"summary": unittest.TestLoader().loadTestsFromModule(framework.tests.summary)} +tests = {"status": unittest.TestLoader().loadTestsFromModule(framework.tests.status)} parser = argparse.ArgumentParser() parser.add_argument("tests", -- 1.8.5.3 _______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
