Reviewers: Mads Ager, Message: TBR
Description: Fixed breakage of test running when sputniktests not checked out. Please review this at http://codereview.chromium.org/381002 Affected files: M test/sputnik/README M test/sputnik/testcfg.py Index: test/sputnik/README diff --git a/test/sputnik/README b/test/sputnik/README index 99f13d14bcb0ff67cbebd34aa84c9285032364dc..b95d8d19a4749a06afc6b53307eb82dde4727966 100644 --- a/test/sputnik/README +++ b/test/sputnik/README @@ -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 Index: test/sputnik/testcfg.py diff --git a/test/sputnik/testcfg.py b/test/sputnik/testcfg.py index 6bb233674b76d21a14214cc82403ecfb01f04d4a..659238220b129d620dda4eb82954ce8d52fe12a3 100644 --- a/test/sputnik/testcfg.py +++ b/test/sputnik/testcfg.py @@ -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) --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
