Revision: 9485
Author:   [email protected]
Date:     Thu Sep 29 07:00:53 2011
Log:      Enable --smi-only-arrays flag in test case for no-snapshot build.

TEST=element-kind.js

Review URL: http://codereview.chromium.org/8077008
http://code.google.com/p/v8/source/detail?r=9485

Modified:
 /branches/bleeding_edge/test/mjsunit/element-kind.js

=======================================
--- /branches/bleeding_edge/test/mjsunit/element-kind.js Mon Sep 26 05:09:04 2011 +++ /branches/bleeding_edge/test/mjsunit/element-kind.js Thu Sep 29 07:00:53 2011
@@ -25,11 +25,23 @@
 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

-// Flags: --allow-natives-syntax
-// Test element kind of objects
+// Flags: --allow-natives-syntax --smi-only-arrays
+// Test element kind of objects.
+// Since --smi-only-arrays affects builtins, its default setting at compile
+// time sticks if built with snapshot.  If --smi-only-arrays is deactivated
+// by default, only a no-snapshot build actually has smi-only arrays enabled
+// in this test case.  Depending on whether smi-only arrays are actually
+// enabled, this test takes the appropriate code path to check smi-only arrays.
+

 support_smi_only_arrays = %HasFastSmiOnlyElements([]);

+if (support_smi_only_arrays) {
+  print("Tests include smi-only arrays.");
+} else {
+  print("Tests do NOT include smi-only arrays.");
+}
+
 var element_kind = {
   fast_smi_only_elements            :  0,
   fast_elements                     :  1,

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

Reply via email to