Fixed breakage of test running when sputniktests not checked out.

Review URL: http://codereview.chromium.org/381002


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3244 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
christian.plesner.hansen@gmail.com 2009-11-09 10:23:50 +00:00
parent b068a9f755
commit db357420ed
2 changed files with 2 additions and 8 deletions

View File

@ -1,6 +1,6 @@
To run the sputniktests you must check out the test suite from
googlecode.com. The test expectations are currently relative to
version 21. To get the tests run the following command within
version 22. To get the tests run the following command within
v8/tests/sputnik/
svn co http://sputniktests.googlecode.com/svn/trunk/ -r21 sputniktests
svn co http://sputniktests.googlecode.com/svn/trunk/ -r22 sputniktests

View File

@ -109,10 +109,4 @@ class SputnikTestConfiguration(test.TestConfiguration):
def GetConfiguration(context, root):
checkout = join(root, 'sputniktests')
if not exists(checkout):
print "No checkout of sputniktests found. Check out the tests under"
print "v8/test/sputnik using:"
print " svn co http://sputniktests.googlecode.com/svn/trunk/ sputniktests"
sys.exit(0)
return SputnikTestConfiguration(context, root)