Reviewers: Michael Starzinger,

Description:
Temporarily hack test frameworks to use the temporary flag. :(


[email protected]
BUG=
TEST=


Please review this at https://chromiumcodereview.appspot.com/10541004/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M test/mozilla/testcfg.py
  M test/test262/testcfg.py


Index: test/mozilla/testcfg.py
diff --git a/test/mozilla/testcfg.py b/test/mozilla/testcfg.py
index 587781d11f24abf747d7948268c66832e924e32c..e88164d22cf5bb8898e6664ddaa03e2947cebf76 100644
--- a/test/mozilla/testcfg.py
+++ b/test/mozilla/testcfg.py
@@ -76,6 +76,7 @@ class MozillaTestCase(test.TestCase):
   def GetCommand(self):
     result = self.context.GetVmCommand(self, self.mode) + \
        [ '--expose-gc', join(self.root, 'mozilla-shell-emulation.js') ]
+ result += [ '--es5_readonly' ] # Temporary hack until we can remove flag
     result += self.framework
     result.append(self.filename)
     return result
Index: test/test262/testcfg.py
diff --git a/test/test262/testcfg.py b/test/test262/testcfg.py
index 07f760c8d7a4d7a7c77300f9ba20f5578b3acb54..c394cc8a5fade3a958b8807388691570577943ec 100644
--- a/test/test262/testcfg.py
+++ b/test/test262/testcfg.py
@@ -62,6 +62,7 @@ class Test262TestCase(test.TestCase):

   def GetCommand(self):
     result = self.context.GetVmCommand(self, self.mode)
+ result += [ '--es5_readonly' ] # Temporary hack until we can remove flag
     result += self.framework
     result.append(self.filename)
     return result


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to