diff options
author | Dylan Baker <dylanx.c.baker@intel.com> | 2014-10-27 13:08:04 -0700 |
---|---|---|
committer | Dylan Baker <dylanx.c.baker@intel.com> | 2014-10-28 19:27:34 -0700 |
commit | 3c686574b69dd7d921f805f6449d96a9cc4d835d (patch) | |
tree | a05184c04ff30e8e4374b6253ee7bc11afe65b17 | |
parent | 05cd842a948edad6bfbedc2d94571fe557964eb6 (diff) |
piglit-print-commands.py: Fix bug with test package
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=85079
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
-rwxr-xr-x | piglit-print-commands.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/piglit-print-commands.py b/piglit-print-commands.py index 17c26dae1..af24902e8 100755 --- a/piglit-print-commands.py +++ b/piglit-print-commands.py @@ -31,8 +31,7 @@ import os.path as path sys.path.append(path.dirname(path.realpath(sys.argv[0]))) import framework.core as core import framework.profile -from framework.exectest import Test -from framework.gleantest import GleanTest +from framework.test import Test, GleanTest def main(): |