Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(369)

Side by Side Diff: test/sputnik/testcfg.py

Issue 7495033: Switch from sample shell to d8 for unit test (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/mozilla/testcfg.py ('k') | test/test262/testcfg.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2009 the V8 project authors. All rights reserved. 1 # Copyright 2009 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 tests = test_suite.EnumerateTests([]) 94 tests = test_suite.EnumerateTests([])
95 result = [] 95 result = []
96 for test in tests: 96 for test in tests:
97 full_path = current_path + [test.GetPath()[-1]] 97 full_path = current_path + [test.GetPath()[-1]]
98 if self.Contains(path, full_path): 98 if self.Contains(path, full_path):
99 case = SputnikTestCase(test, full_path, self.context, mode) 99 case = SputnikTestCase(test, full_path, self.context, mode)
100 result.append(case) 100 result.append(case)
101 return result 101 return result
102 102
103 def GetBuildRequirements(self): 103 def GetBuildRequirements(self):
104 return ['sample', 'sample=shell'] 104 return ['d8']
105 105
106 def GetTestStatus(self, sections, defs): 106 def GetTestStatus(self, sections, defs):
107 status_file = join(self.root, 'sputnik.status') 107 status_file = join(self.root, 'sputnik.status')
108 if exists(status_file): 108 if exists(status_file):
109 test.ReadConfigurationInto(status_file, sections, defs) 109 test.ReadConfigurationInto(status_file, sections, defs)
110 110
111 111
112 def GetConfiguration(context, root): 112 def GetConfiguration(context, root):
113 return SputnikTestConfiguration(context, root) 113 return SputnikTestConfiguration(context, root)
OLDNEW
« no previous file with comments | « test/mozilla/testcfg.py ('k') | test/test262/testcfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698