summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLeo Balter <leonardo.balter@gmail.com>2016-03-17 15:28:08 -0400
committerLeo Balter <leonardo.balter@gmail.com>2016-03-17 15:28:08 -0400
commit5357b1585b4681532d0d9bc7c98a93e5640f8f69 (patch)
tree6176fb4cad6baa9ad99afb8e3dd4e3f575289484 /tools
parentb1c979d3914c5576f9d8c5a676ac513f784bc078 (diff)
parent23d566209a2bccc14d572e0bd81394a9f99ca272 (diff)
downloadqtdeclarative-testsuites-5357b1585b4681532d0d9bc7c98a93e5640f8f69.tar.gz
Merge pull request #504 from bocoup/explicit-async
Make asynchronous test configuration explicit
Diffstat (limited to 'tools')
-rwxr-xr-xtools/packaging/test262.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/packaging/test262.py b/tools/packaging/test262.py
index 921360a05..c87609b8c 100755
--- a/tools/packaging/test262.py
+++ b/tools/packaging/test262.py
@@ -277,7 +277,7 @@ class TestCase(object):
return 'raw' in self.testRecord
def IsAsyncTest(self):
- return '$DONE' in self.test
+ return 'async' in self.testRecord
def GetIncludeList(self):
if self.testRecord.get('includes'):