summaryrefslogtreecommitdiff
path: root/piglit-resume.py
diff options
context:
space:
mode:
authorDylan Baker <baker.dylan.c@gmail.com>2014-04-10 15:27:18 -0700
committerDylan Baker <baker.dylan.c@gmail.com>2014-04-17 08:00:17 -0700
commit7d2f44138baf3a0022fbd0503e68e471a9a1aae7 (patch)
tree40e63294d923496241730c2443061da023f04f57 /piglit-resume.py
parent7902d078d9c65361847d15874787203cc73a1d26 (diff)
framework: Split TestProfile and related out of core
This solves a dependency loop between core and exectest, laying the groundwork for future improvements to the exectest module. Signed-off-by: Dylan Baker <baker.dylan.c@gmail.com> Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
Diffstat (limited to 'piglit-resume.py')
-rwxr-xr-xpiglit-resume.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/piglit-resume.py b/piglit-resume.py
index 09d0664e6..590abf0a5 100755
--- a/piglit-resume.py
+++ b/piglit-resume.py
@@ -28,6 +28,7 @@ import os.path as path
import argparse
import framework.core as core
+import framework.profile
def main():
@@ -76,7 +77,7 @@ def main():
json_writer.write_dict_item(key, value)
env.exclude_tests.add(key)
- profile = core.merge_test_profiles(results.options['profile'])
+ profile = framework.profile.merge_test_profiles(results.options['profile'])
if env.dmesg:
profile.dmesg = env.dmesg