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

Unified Diff: vm/dart_api_impl_test.cc

Issue 9939014: Temp hax. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « vm/dart_api_impl.cc ('k') | vm/dart_api_state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/dart_api_impl_test.cc
===================================================================
--- vm/dart_api_impl_test.cc (revision 6195)
+++ vm/dart_api_impl_test.cc (working copy)
@@ -4786,7 +4786,7 @@
result = Dart_IntegerToInt64(param1, &value1);
EXPECT(!Dart_IsError(result));
EXPECT_LE(0, value1);
- EXPECT_LE(value1, 1000000);
+ EXPECT_LE(value1, 10000000);
// Get native field from receiver.
intptr_t value2;
@@ -4842,7 +4842,7 @@
EXPECT_VALID(result);
Dart_Handle args[1];
- args[0] = Dart_NewInteger(100000);
+ args[0] = Dart_NewInteger(10000000);
result = Dart_Invoke(lib,
Dart_NewString("benchmark"),
1,
« no previous file with comments | « vm/dart_api_impl.cc ('k') | vm/dart_api_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698