diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2014-04-17 08:39:06 -0700 |
---|---|---|
committer | Dylan Baker <baker.dylan.c@gmail.com> | 2014-04-17 08:40:22 -0700 |
commit | e2d1580938a5092d8cb97551043b4503c108b9ff (patch) | |
tree | 8d9ae2ea35ff35f68e654fc1f1703394a7e8b508 /piglit-print-commands.py | |
parent | 7970bf1fedfa9e2bad8e07c61747730029c71a59 (diff) |
framework: fix regression from 7d2f441
There was one consumer of TestProfile related functions that wasn't
converted, piglit-print-commands.py. This fix is trivial
Signed-off-by: Dylan Baker <baker.dylan.c@gmail.com>
Diffstat (limited to 'piglit-print-commands.py')
-rwxr-xr-x | piglit-print-commands.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/piglit-print-commands.py b/piglit-print-commands.py index d62d540c5..547d964dd 100755 --- a/piglit-print-commands.py +++ b/piglit-print-commands.py @@ -30,6 +30,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 @@ -60,7 +61,7 @@ def main(): piglit_dir = path.dirname(path.realpath(sys.argv[0])) os.chdir(piglit_dir) - profile = core.loadTestProfile(args.testProfile) + profile = framework.profile.loadTestProfile(args.testProfile) def getCommand(test): command = '' |