Commit graph

1342 commits

Author SHA1 Message Date
William Hesse 6c8a1a7f87 Increase timeout for analysis_server tests in debug mode.
BUG=https://github.com/dart-lang/sdk/issues/24596
BUG=https://github.com/dart-lang/sdk/issues/24597
R=ricow@google.com

Review URL: https://codereview.chromium.org/1399243006 .
2015-10-15 15:08:40 +02:00
Asger Feldthaus c4b418a2c3 dart2js cps: Updated status file for host-checked mode.
BUG=

Review URL: https://codereview.chromium.org/1402943003 .
2015-10-13 15:31:40 +02:00
Asger Feldthaus f1a40e23c1 dart2js cps: Status updates and minor fixes for host checked mode.
CPS should now run the test suite cleanly in host-checked mode. Let's keep it that way.

BUG=
R=floitsch@google.com

Review URL: https://codereview.chromium.org/1377323003 .
2015-10-02 15:36:21 +02:00
keertip 18b68f7290 remove docgen remnants from repo, update CHANGELOG
BUG=
R=alanknight@google.com, whesse@google.com

Review URL: https://codereview.chromium.org//1361163002 .
2015-09-23 10:27:15 -07:00
Karl Klose e28e578731 dart2js cps: Support sync* and yield.
R=asgerf@google.com, kmillikin@google.com

Review URL: https://codereview.chromium.org//1353843002 .
2015-09-23 11:01:34 +02:00
Karl Klose d9caf4a725 Move cps-ir section to the end of the file and update test expectations.
BUG=
R=kmillikin@google.com

Review URL: https://codereview.chromium.org//1312583008 .
2015-09-07 15:37:39 +02:00
Sigmund Cherem 1f349aeaef Skip lookup map tests in dartium
TBR=sra@google.com

Review URL: https://codereview.chromium.org//1323143007 .
2015-09-04 16:28:29 -07:00
Sigmund Cherem f348b8b01c Add version validation for LookupMap, also add unittest directly in LookupMap (take 2)
BUG=
R=sra@google.com

Review URL: https://codereview.chromium.org//1308993008 .
2015-09-04 14:24:26 -07:00
Sigmund Cherem 9b8c06d225 Revert "Add version validation for LookupMap, also add unittest directly in LookupMap."
This reverts commit fc582d7a3d due to lots of redness

TBR=sra@google.com

Review URL: https://codereview.chromium.org//1318003006 .
2015-09-04 14:05:41 -07:00
Sigmund Cherem fc582d7a3d Add version validation for LookupMap, also add unittest directly in LookupMap.
R=sra@google.com

Review URL: https://codereview.chromium.org//1312943007 .
2015-09-04 13:59:50 -07:00
Asger Feldthaus 0216e21efc dart2js cps: Use 'this' instead of receiver-arg when possible.
This fixes a bug in how intercepted super calls were handled,
and enables the redundant receiver optimization.

BUG=
R=kmillikin@google.com

Review URL: https://codereview.chromium.org//1312393002 .
2015-08-26 16:06:41 +02:00
Karl Klose 6820b95c1c dart2js cps: update test expectations.
TBR=kmillikin@google.com

Review URL: https://codereview.chromium.org//1303333003 .
2015-08-24 10:59:15 +02:00
Johnni Winther 6631698ee8 Mark long running analyzer tests as slow for dart2js.
BUG=
R=whesse@google.com

Review URL: https://codereview.chromium.org//1296243006.
2015-08-18 11:46:59 +02:00
Asger Feldthaus 0210c5c035 dart2js cps: Fix treatment of captured type variables.
CLOSES=24064
BUG=
R=kmillikin@google.com

Review URL: https://codereview.chromium.org//1286113003.
2015-08-13 13:35:50 +02:00
Karl Klose bafb8fb191 dart2js cps: Support async/await by rewriting the JavaScript AST.
BUG=
R=kmillikin@google.com

Review URL: https://codereview.chromium.org//1253333002 .
2015-08-07 11:27:40 +02:00
Florian Loitsch 277bfc3355 Update status files.
Review URL: https://codereview.chromium.org//1269023006 .
2015-08-04 14:16:14 +02:00
Karl Klose 2a137d16db dart2js cps: Fix performance issues in optimization passes.
Type propagation, shrinking reductions, and let sinking each took
more than 2 minutes on a stress test, where now they take a few
seconds.

Huge hash tables (Map/Set) were a big problem, especially when used as
worklists.

Let sinking had an issue with a linear-time search for the enclosing
continuation of an expression. This has been replaced with a visitor
state.

The stress test was:

  tests/co19/src/LibTest/collection/ListBase/ListBase_class_A01_t02

This was only slow because negative constants get translated to
intercepted calls. That itself should be fixed, but the IR should
still be able to handle the stress.

The change in shrinking reductions altered the redex priority from
FIFO to LIFO which has a negative effect on code quality in
unwrapException (in any test case with a try/catch). It seems like
an existing issue that has surfaced.

Since I am going on vacation, I ask that someone would please
commit this on my behalf (assuming things are looking good).
--asgerf

BUG=
R=karlklose@google.com

Review URL: https://codereview.chromium.org//1252883003 .
2015-07-27 12:12:06 +02:00
Asger Feldthaus 7d8067135c dart2js cps: Support 'on T' clauses without a 'catch'.
BUG=
R=karlklose@google.com

Review URL: https://codereview.chromium.org//1247333003.
2015-07-23 12:39:10 +02:00
Karl Klose 0869c5ca4a dart2js cps: Update test expectations.
TBR=asgerf@google.com

Review URL: https://codereview.chromium.org//1240253002 .
2015-07-20 14:40:37 +02:00
Karl Klose 04dacd24f4 Remove functions white-listed for use of try-finally and switch, add JS_SET_CURRENT_ISOLATE.
R=asgerf@google.com

Review URL: https://codereview.chromium.org//1237573002 .
2015-07-14 10:26:38 +02:00
Karl Klose 3fe9309c96 dart2js cps: Implement compilation of redirecting factory constructors for reflection.
Without reflection, redirecting factory constructor invocations are shortcut at the instantiation site.  With reflection, code like
  reflectClass(Foo).newInstance(const Symbol(''), [])
can hit a redirecting factory constructor and we need to emit a function that does the redirection and type substitution.

R=asgerf@google.com

Review URL: https://codereview.chromium.org//1227873004 .
2015-07-09 14:54:23 +02:00
Florian Loitsch 1b372b8fe5 Mark another analyzer test as slow.
Review URL: https://codereview.chromium.org//1226043002 .
2015-07-08 17:03:01 +02:00
Karl Klose 71e2bec0a5 dart2js cps: Support JS_CURRENT_ISOLATE.
R=asgerf@google.com

Review URL: https://codereview.chromium.org//1222913003 .
2015-07-07 15:55:13 +02:00
Asger Feldthaus 34302b1320 dart2js cps: Translate synthesized mixin constructors.
BUG=
R=kmillikin@google.com

Review URL: https://codereview.chromium.org//1216593002.
2015-06-29 15:28:40 +02:00
Asger Feldthaus ec55d46148 dart2js cps: Fix translation of local constants.
BUG=
R=kmillikin@google.com

Review URL: https://codereview.chromium.org//1211393003.
2015-06-29 14:32:49 +02:00
Paul Berry db6c95502a Work around naming conflict in analyzer's Resource class.
Commit f8ce36df55 introduced an SDK
class called "Resource", causing warnings to appear in any files that
reference the analyzer class with the same name.  (Fortunately there
was no regression in functionality since the spec requires the name
conflict to be resolved in favor of the definition that is outside the
SDK).

As a short term workaround to avoid the warnings, we are explicitly
importing 'dart:core' and hiding the new Resource class.  In a future
CL, we plan to rework analyzer's Resource class in order to make some
changes necessary for ".packages" file support; when that happens we
will probably rename the class to avoid the name conflict.

R=brianwilkerson@google.com

Review URL: https://codereview.chromium.org//1215753003.
2015-06-26 13:00:44 -07:00
Lasse R.H. Nielsen f8ce36df55 Add Resource class. Currently unimplemented.
R=herhut@google.com, iposva@google.com

Committed: 2890a7a2a9

Review URL: https://codereview.chromium.org//1181663002.
2015-06-26 11:42:02 +02:00
Asger Feldthaus fceb7f00dc dart2js cps: Handle checks against mutable and extendable lists.
BUG=
R=kmillikin@google.com

Review URL: https://codereview.chromium.org//1206873003.
2015-06-25 15:03:00 +02:00
Kevin Millikin b9192ab9e2 dart2js CPS: Support try/catch/finally.
Support try/catch/finally by pretending it is macro-expanded into
try/catch and try/finally:

    try S0 catch (ex, st) S1 finally S2
    ==>
    try { try S0 catch (ex, st) S1 } finally S2

The duplicated code for try/catch and try/finally is abstracted into a
function parameterized over translations for all the parts that
differed.

R=asgerf@google.com

Review URL: https://codereview.chromium.org//1207703002.
2015-06-24 17:13:15 +02:00
Kevin Millikin 089ed2965b Implement try/finally by inlining the finally code.
Try/finally is implemented by inlining.  There is a try/catch to catch
exceptions in the try block.  The catch body contains the finally code
followed by a rethrow.  The code for finally is translated again after the
normal exit of the try block.  Break, continue, and return exits in the try
block have the finally code inlined just before the exit is taken.

Try/catch/finally is not yet supported, it requires some changes to the
assigned variables analysis.

R=asgerf@google.com

Review URL: https://codereview.chromium.org//1201983002.
2015-06-24 10:12:42 +02:00
Asger Feldthaus 56158b54a1 dart2cps: Fix bug in constructors.
When visiting another constructor, the visitor must use another tree elements mapping (and source file info).

BUG=
R=floitsch@google.com

Committed: 4a1e6c7966

Reverted: 382319fe70

Review URL: https://codereview.chromium.org//1200823002.
2015-06-23 10:55:02 +02:00
Asger Feldthaus 382319fe70 Revert "dart2cps: Fix bug in constructors."
This reverts commit 4a1e6c7966.

TBR=floitsch@google.com

BUG=

Review URL: https://codereview.chromium.org//1195393005.
2015-06-22 19:35:24 +02:00
Asger Feldthaus 4a1e6c7966 dart2cps: Fix bug in constructors.
When visiting another constructor, the visitor must use another tree elements mapping (and source file info).

BUG=
R=floitsch@google.com

Review URL: https://codereview.chromium.org//1200823002.
2015-06-22 17:53:47 +02:00
Kevin Millikin 7a853ca634 Fix a bug in dart2js's shrinking reductions.
When a term is deleted, the algorithm searches for new redexes created
by the term's deletion.  Continuation beta redexes search up the term
between the redex and the continuation's binding to ensure that the
continuation is not moved into the scope of an exception handler.

This search fails if it first encounters the root of the deleted
subterm (i.e., the newly-created redex is in the deleted term).  Just
ignore the redex in that case, since the term is being deleted.

Also, update some triaged test expectations with their bug numbers.

R=asgerf@google.com

Review URL: https://codereview.chromium.org//1196323002.
2015-06-22 16:50:48 +02:00
Kevin Millikin bf595224d5 Implement simple switch statements as nested if/else.
Simple switch statements that do not have continue to labeled cases
are compiled into a chain if/else comparisons.

R=asgerf@google.com

Review URL: https://codereview.chromium.org//1191193005.
2015-06-22 11:29:31 +02:00
Karl Klose 3f46181244 cps-ir: Support foreign code.
R=kmillikin@google.com

Committed: a120ee7c90

Reverted: 40ed0daaaf

Review URL: https://codereview.chromium.org//1185633003.
2015-06-19 13:44:58 +02:00
Karl Klose 684214af2b Mark more analyzer tests as slow.
R=whesse@google.com, brianwilkerson@google.com

Review URL: https://codereview.chromium.org//1190313002.
2015-06-19 13:03:03 +02:00
Karl Klose 40ed0daaaf Revert "cps-ir: Support foreign code."
This reverts commit a120ee7c90.

TBR=kmillikin@google.com

Review URL: https://codereview.chromium.org//1196443002.
2015-06-18 13:37:52 +02:00
Karl Klose a120ee7c90 cps-ir: Support foreign code.
R=kmillikin@google.com

Review URL: https://codereview.chromium.org//1185633003.
2015-06-18 13:09:50 +02:00
Karl Klose e5b0034f69 Mark pkg/analyzer/test/src/context/context_test as Timeout on dart2js.
R=johnniwinther@google.com

Review URL: https://codereview.chromium.org//1193513003.
2015-06-17 11:03:56 +02:00
Karl Klose bb45376735 Update dart2js-cps_ir status files.
R=kmillikin@google.com

Review URL: https://codereview.chromium.org//1191433002.
2015-06-15 12:50:58 +02:00
Karl Klose e4b56654ff Update dart2js-cps_ir test expectations with better annotations.
R=asgerf@google.com

Review URL: https://codereview.chromium.org//1181613003.
2015-06-11 10:56:56 +02:00
Karl Klose 6cffe227fe Update dart2js-cps_ir test expectations after bac7481d3d.
R=johnniwinther@google.com

Review URL: https://codereview.chromium.org//1171773004.
2015-06-09 15:12:18 +02:00
pq 2c5e890fc7 Build fixes.
Long tail of fixes related to moving out of `pkg_tested`.

R=paulberry@google.com

Review URL: https://codereview.chromium.org//1162423002
2015-06-03 14:03:15 -07:00
Karl Klose 95a46fb177 Adjust cps_ir test expectations.
R=johnniwinther@google.com

Review URL: https://codereview.chromium.org//1167673009
2015-06-02 11:26:26 +02:00
Asger Feldthaus a498d811e6 Skip analyzer2dart tests.
BUG=
R=johnniwinther@google.com

Review URL: https://codereview.chromium.org//1151533003
2015-05-27 14:13:03 +02:00
Karl Klose 36d3e0d0e6 Update cps-ir test expectations.
R=johnniwinther@google.com

Review URL: https://codereview.chromium.org//1152133003
2015-05-22 09:58:58 +02:00
Natalie Weizenbaum e7a1c3c585 Remove the core library stubbing infrastructure.
This hasn't been used in a long time. It's just clutter now.

R=ahe@google.com

Review URL: https://codereview.chromium.org//1134583005
2015-05-18 12:42:36 -07:00
karlklose@google.com 9b32c9e673 Implement raw list checks.
R=asgerf@google.com

Review URL: https://codereview.chromium.org//1123343008

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45762 260f80e4-7a28-3924-810f-c04153c831b5
2015-05-13 11:58:45 +00:00
asgerf@google.com f5f1eb643d dart2js cps: Introduce GetStatic/SetStatic.
The GetStatic is used for reading static fields and tearing off
static methods.

Invoking a static getter/setter (not from a field) is still an
InvokeStatic, which IMO is the way it should remain.

BUG=
R=karlklose@google.com

Committed: https://code.google.com/p/dart/source/detail?r=45735

Reverted: https://code.google.com/p/dart/source/detail?r=45737

Review URL: https://codereview.chromium.org//1134063002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45738 260f80e4-7a28-3924-810f-c04153c831b5
2015-05-12 14:19:40 +00:00
asgerf@google.com 961c805398 Revert "dart2js cps: Introduce GetStatic/SetStatic."
This reverts commit 28e4518df87c72cb8e23fe6d73b7750ad0f2183a.

TBR=karlklose@google.com

BUG=

Review URL: https://codereview.chromium.org//1136523008

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45737 260f80e4-7a28-3924-810f-c04153c831b5
2015-05-12 13:53:15 +00:00
asgerf@google.com 2c90643171 dart2js cps: Introduce GetStatic/SetStatic.
The GetStatic is used for reading static fields and tearing off
static methods.

Invoking a static getter/setter (not from a field) is still an
InvokeStatic, which IMO is the way it should remain.

BUG=
R=karlklose@google.com

Review URL: https://codereview.chromium.org//1134063002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45735 260f80e4-7a28-3924-810f-c04153c831b5
2015-05-12 13:35:49 +00:00
karlklose@google.com 0eaa4d4717 cps-ir: Support compilation of methods that use interceptor calling convention.
This is a modified version of sra@'s CL https://codereview.chromium.org/1020243002/ with kmillikin@'s comments addressed.

R=sigurdm@google.com, kmillikin@google.com

Review URL: https://codereview.chromium.org//1109403002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45680 260f80e4-7a28-3924-810f-c04153c831b5
2015-05-11 12:38:14 +00:00
asgerf@google.com 9630163eaf dart2js cps: Handle error cases.
A new IR node CreateInvocationMirror has been introduced, which is
needed for creating calls to noSuchMethod. The main reason for this node
is that the JS constructor for Invocation objects require the internal
(minified) name of the target, which the builder does not know.
I don't think the IR pipeline should depend on the Namer, so the IR node
is preserved all the way to codegen.

R=floitsch@google.com, kmillikin@google.com

Review URL: https://codereview.chromium.org//1130813002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45678 260f80e4-7a28-3924-810f-c04153c831b5
2015-05-11 09:06:12 +00:00
kmillikin@google.com 6ab3c55366 Fix an assertion failure in dart2js.
In the CPS translation we assert that a mutable variable added to the CPS
term belongs to the function currently being compiled, which is reasonable.
However, in the JS backend this didn't work as written.  The variable
element can report that it belongs to a Dart function, and the function
currently being compiled can be a synthesized .call method of a closure
class representing that Dart function.

The solution presented here is to plumb the mapping from Dart function to
closure class .call methods through to where the mutable variables are
created.  It might be better, but a lot more complicated, to make the
variable elements able to correctly report their owner after closure
conversion.

R=asgerf@google.com, karlklose@google.com
BUG=

Review URL: https://codereview.chromium.org//1084413003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45636 260f80e4-7a28-3924-810f-c04153c831b5
2015-05-08 08:58:00 +00:00
ricow@google.com e92f697236 Remove dart2dart support from testing scripts and status files
I will leave it to the dart2js people to remove the support from the dart2js tools (there is also a bunch of comments still in code, do a git grep)

R=kustermann@google.com, floitsch@google.com, kmillikin@google.com
BUG=

Review URL: https://codereview.chromium.org//1126363003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45588 260f80e4-7a28-3924-810f-c04153c831b5
2015-05-07 11:29:55 +00:00
kevmoo@google.com cc78dfeaee remove pkg/mock
Moved to https://github.com/dart-lang/mock

R=ricow@google.com

Review URL: https://codereview.chromium.org//1115483002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45442 260f80e4-7a28-3924-810f-c04153c831b5
2015-04-28 20:46:31 +00:00
nweiz@google.com 70a846ad6c Update pubspecs and dependencies to get pkgbuild tests working.
This also removes the vendored copy of Angular, which was an outdated version of
an unstaffed branch.

R=pquitslund@google.com

Review URL: https://codereview.chromium.org//1058283006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45410 260f80e4-7a28-3924-810f-c04153c831b5
2015-04-24 20:08:53 +00:00
karlklose@google.com e8fa15c30a Update dart2js-cps_ir test expectations.
R=johnniwinther@google.com

Review URL: https://codereview.chromium.org//1091143003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45371 260f80e4-7a28-3924-810f-c04153c831b5
2015-04-23 08:40:49 +00:00
pquitslund@google.com 49d0f16a2a Analyzer CLI removal.
CLI now lives in dedicated `analyzer_cli` package.

R=brianwilkerson@google.com

Review URL: https://codereview.chromium.org//1102613002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45362 260f80e4-7a28-3924-810f-c04153c831b5
2015-04-22 20:32:05 +00:00
karlklose@google.com 7dd2608820 Adjust test expectations for dart2js-cps-ir.
R=kmillikin@google.com

Review URL: https://codereview.chromium.org//1092013003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45236 260f80e4-7a28-3924-810f-c04153c831b5
2015-04-17 11:45:51 +00:00
zra@google.com 86bfd7cb30 Adds a simarmv5te build and test target.
Also:
- Removes command line flags to choose simulated arm version.
  I think we should use build targets instead, like in this change,
  to make building and testing more obvious.
- Skips pkg tests on all simulators.

R=regis@google.com, ricow@google.com

Review URL: https://codereview.chromium.org//1077823002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45181 260f80e4-7a28-3924-810f-c04153c831b5
2015-04-15 20:44:43 +00:00
karlklose@google.com d839c64766 Establish test expectations for dart2js running with the CPS based backend.
R=ricow@google.com

Review URL: https://codereview.chromium.org//1089113003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45162 260f80e4-7a28-3924-810f-c04153c831b5
2015-04-15 11:44:02 +00:00
zra@google.com 34044a4ca8 Adds armv5 build and test target.
R=regis@google.com

Review URL: https://codereview.chromium.org//1043263002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@44828 260f80e4-7a28-3924-810f-c04153c831b5
2015-03-31 23:11:33 +00:00
whesse@google.com 745b6809e9 Update test status for flaky tests.
BUG=dartbug.com/22695, dartbug.com/22896
R=ricow@google.com

Review URL: https://codereview.chromium.org//1019463002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@44557 260f80e4-7a28-3924-810f-c04153c831b5
2015-03-18 12:45:50 +00:00
ricow@google.com 2d558d3c79 Skip dart integration tests on vm debug mode
R=paulberry@google.com
BUG=

Review URL: https://codereview.chromium.org//1005903002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@44448 260f80e4-7a28-3924-810f-c04153c831b5
2015-03-13 07:50:44 +00:00
johnniwinther@google.com 5130b19fb7 Fix warning in analyzer2dart.
BUG=http://dartbug.com/22418
R=floitsch@google.com

Review URL: https://codereview.chromium.org//982543002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@44230 260f80e4-7a28-3924-810f-c04153c831b5
2015-03-04 13:20:48 +00:00
kevmoo@google.com be8aca929d Move more tests to SkipByDesign
R=whesse@google.com

Review URL: https://codereview.chromium.org//932493004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43977 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-23 21:31:12 +00:00
scheglov@google.com 01126e0213 Issue 22492. Increase number of event pumping cycles.
I'm not sure if it is going to fix the problem.
I cannot reproduce it with x86 release build on Win7.
But that's the best guess I have.

R=brianwilkerson@google.com, paulberry@google.com
BUG= https://code.google.com/p/dart/issues/detail?id=22492

Review URL: https://codereview.chromium.org//944013003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43922 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-20 18:35:06 +00:00
floitsch@google.com 27a30ee1de dart2js: Support isDeferred on DependencyMirrors.
BUG= http://dartbug.com/22475
R=johnniwinther@google.com

Review URL: https://codereview.chromium.org//924393003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43905 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-20 10:37:44 +00:00
iposva@google.com 6bb78fd867 - Mark flaky test.
Review URL: https://codereview.chromium.org//937113003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43881 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-19 16:55:54 +00:00
paulberry@google.com dffb8c8a68 Status updates for issue 22475.
TBR=rmacnak@google.com

Review URL: https://codereview.chromium.org//938593004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43843 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-18 15:18:39 +00:00
kevmoo@google.com 4cc4e28411 status files: trying out new SkipSlow flag
and selectively used SkipByDesign in more places

R=whesse@google.com

Review URL: https://codereview.chromium.org//928523002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43815 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-17 17:21:39 +00:00
paulberry@google.com d3c4d57a5b Update status file for bug 22418
TBR=johnniwinther@google.com

Review URL: https://codereview.chromium.org//920043006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43769 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-13 16:55:17 +00:00
paulberry@google.com 6ea61b5686 Partial backport of analyzer async/await fixes to Java.
Backport of r43613, r43537, r43446, r43427, r43424, r43418, r43403,
r43361 to the Java-based analyzer.  The backport is partial in that
the TypeProvider was not modified to include Future and Stream types
(this would have required substantial additional effort), and
consequently not all static warnings are correctly produced.  However,
all NonErrorResolverTest cases were successfully backported and pass,
meaning that the Java-based analyzer shouldn't produce false positive
warnings for async/await code anymore.

BUG=dartbug.com/22252
R=brianwilkerson@google.com

Review URL: https://codereview.chromium.org//913623002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43655 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-10 16:04:50 +00:00
kustermann@google.com f082c82e46 Mark analyzer/test/enum_test as Slow
R=floitsch@google.com

It takes close to 1 minute for dart2js to analyze the test.

Review URL: https://codereview.chromium.org//895413002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43469 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-04 15:14:09 +00:00
paulberry@google.com 7865c0f4e7 Mark more dartanalyzer tests as failing due to bug 22252.
TBR=scheglov@google.com

Review URL: https://codereview.chromium.org//886393007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43450 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-04 00:08:26 +00:00
johnniwinther@google.com 93fef72fb3 Update analyzer and dartium status.
BUG=

Review URL: https://codereview.chromium.org//900513004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43386 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-03 09:53:31 +00:00
lrn@google.com 66d962870f Update pkg/docgen status file to mark test failing.
BUG= http://dartbug.com/22233

Review URL: https://codereview.chromium.org//861353004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43351 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-02 09:03:08 +00:00
jwren@google.com a7083c8040 Disable test for windows pkg bots, issue 22180
R=pquitslund@google.com

Review URL: https://codereview.chromium.org//892673002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43342 260f80e4-7a28-3924-810f-c04153c831b5
2015-01-30 17:49:35 +00:00
pquitslund@google.com 20f7af4eb6 Status file update to reflect now passing enum_test (dartbug.com/21323).
R=scheglov@google.com

Review URL: https://codereview.chromium.org//879013002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43200 260f80e4-7a28-3924-810f-c04153c831b5
2015-01-27 19:14:12 +00:00
scheglov@google.com ebe4a73060 Disable analysis_server tests on dart2js to avoid bug in dart2js.
TBR

R=brianwilkerson@google.com
BUG=

Review URL: https://codereview.chromium.org//883543002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43167 260f80e4-7a28-3924-810f-c04153c831b5
2015-01-27 00:51:22 +00:00
whesse@google.com 459a39c7fb Mark 2 analysis server tests as slow.
BUG=
R=ricow@google.com

Review URL: https://codereview.chromium.org//826293005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42997 260f80e4-7a28-3924-810f-c04153c831b5
2015-01-19 15:56:08 +00:00
whesse@google.com 67a09576b0 Update status for co19 tests on safari
BUG=
R=ricow@google.com

Review URL: https://codereview.chromium.org//863443004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42994 260f80e4-7a28-3924-810f-c04153c831b5
2015-01-19 15:06:10 +00:00
floitsch@google.com d052ab5278 Mark analysis test as slow.
Review URL: https://codereview.chromium.org//863473003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42991 260f80e4-7a28-3924-810f-c04153c831b5
2015-01-19 14:42:01 +00:00
whesse@google.com ca69477f4e Update co19 status and timing-out tests.
BUG=dartbug.com/22050
R=ricow@google.com

Review URL: https://codereview.chromium.org//851683002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42803 260f80e4-7a28-3924-810f-c04153c831b5
2015-01-13 12:24:30 +00:00
whesse@google.com 1a92824c85 Update co19 status on firefox and chrome.
Update status for two timing out tests, and co19 on Android.

BUG=
R=ricow@google.com

Review URL: https://codereview.chromium.org//825353007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42782 260f80e4-7a28-3924-810f-c04153c831b5
2015-01-12 17:51:08 +00:00
paulberry@google.com c35a4acd9c Fix order of operations dependencies in element_references_test
It's not safe for a single test to have two overlapping calls to
findElementReferences() because fields in the test class are used to
hold the search results and to keep track of whether more results are
pending.

Fixes a bogus test failure that arose after the relative ordering of
futures and microtasks was changed.

BUG=dartbug.com/22014
R=scheglov@google.com

Review URL: https://codereview.chromium.org//842803003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42738 260f80e4-7a28-3924-810f-c04153c831b5
2015-01-09 16:36:42 +00:00
iposva@google.com 7aa23bdf10 Make pkg tests green. See issue 22014.
Review URL: https://codereview.chromium.org//836403003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42674 260f80e4-7a28-3924-810f-c04153c831b5
2015-01-07 22:44:00 +00:00
sigmund@google.com f883904226 Skip tests for unittest in dartium. These tests are now covered by the package bots and are not meant to be executed in the Dart bots anymore.
Note that once we fix issue 21949, these tests are not going to be run anyways (tests in
third_party/pkg/ are not executed by the Dart bots). So we can delete this line once we fix that bug.

BUG=

Review URL: https://codereview.chromium.org//819913003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42551 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-22 18:54:54 +00:00
nweiz@google.com 4b524e8f21 Pull args, intl, logging, shelf, and source_maps out of the SDK.
R=sigmund@google.com

Review URL: https://codereview.chromium.org//814113004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42537 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-20 00:47:32 +00:00
nweiz@google.com 55d9da7005 Re-add http_server to pkg.status.
TBR

Review URL: https://codereview.chromium.org//819473003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42527 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-19 21:54:51 +00:00
nweiz@google.com b0009de0d6 Re-apply "Remove unittest and matcher from the repo."
This was originally submitted as r42497 and reverted by r42498. This CL fixes
the failing isolate test, and https://codereview.chromium.org/814883003/ fixes
the Dartium and Standalone issues.

R=sigmund@google.com

Review URL: https://codereview.chromium.org//807193003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42524 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-19 21:14:56 +00:00
jakemac@google.com f911db978d delete web_components
R=sigmund@google.com

Review URL: https://codereview.chromium.org//819653002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42519 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-19 18:33:11 +00:00
jakemac@google.com c35b8c5c18 remove code-transformers from the repo
Review URL: https://codereview.chromium.org//820513003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42514 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-19 17:21:57 +00:00
ricow@google.com efad8e46a1 Revert revision 42497 "Remove unittest and matcher from the repo."
This broke 80% of the bots


git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42498 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-19 07:01:50 +00:00
nweiz@google.com 28bced3a0c Remove unittest and matcher from the repo.
This also cleans up a few lingering unused lines in pkg.status.

R=sigmund@google.com

Review URL: https://codereview.chromium.org//814953002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42497 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-19 02:18:47 +00:00
jakemac@google.com 4c4e722480 remove smoke from the repo
R=sigmund@google.com

Review URL: https://codereview.chromium.org//802703004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42484 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-18 22:38:15 +00:00
jakemac@google.com 05b372ad0e delete observe from the repo
R=sigmund@google.com

Review URL: https://codereview.chromium.org//817483003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42481 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-18 22:13:41 +00:00
jakemac@google.com 523c0f019b delete template binding from the repo
R=sigmund@google.com

Review URL: https://codereview.chromium.org//815843002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42476 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-18 20:27:05 +00:00
jakemac@google.com 0c6a36fc67 remove polymer expressions from the repo
R=sigmund@google.com

Review URL: https://codereview.chromium.org//814073002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42475 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-18 20:15:47 +00:00
nweiz@google.com bfe623d70a Delete a bunch of packages that are now on GitHub.
This CL doesn't delete barback or http, since their exact location is
used by pub's test runner and build infrastructure respectively. I'll
send out individual CLs for them.

R=sigmund@google.com

Review URL: https://codereview.chromium.org//812253002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42467 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-18 19:00:59 +00:00
sigmund@google.com 4979504845 Delete polymer from the Dart repo.
Code now lives at: https://github.com/dart-lang/polymer-dart

Bots covering the polymer tests can be seen at:
build.chromium.org/p/client.dart.packages/console

Or to filter just the polymer bots:
build.chromium.org/p/client.dart.packages/console?builder=packages-windows-polymer-dart&builder=packages-linux-polymer-dart&builder=packages-mac-polymer-dart

R=jakemac@google.com, jmesserly@google.com

Review URL: https://codereview.chromium.org//794473002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42461 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-18 17:22:53 +00:00
johnniwinther@google.com 2b9de73a47 Fix analyzer2dart end2end.
BUG=http://dartbug.com/21872
R=karlklose@google.com

Review URL: https://codereview.chromium.org//812333002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42453 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-18 10:19:40 +00:00
nweiz@google.com 1f03c49548 Remove pkg/glob from the repo.
See also https://codereview.chromium.org/812873004/, which adds it via
third_party.

R=sigmund@google.com

Review URL: https://codereview.chromium.org//796933005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42448 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-18 01:14:13 +00:00
floitsch@google.com 28451ab031 analyzer2dart: Update status file.
Review URL: https://codereview.chromium.org//798233003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42357 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-13 17:34:46 +00:00
paulberry@google.com c0d348575c Disable completion_test on debug builds (it times out).
TBR=brianwilkerson@google.com

Review URL: https://codereview.chromium.org//792463004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42211 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-09 17:18:33 +00:00
srdjan@google.com f95a58d882 Revert disabled test (r42196).
Review URL: https://codereview.chromium.org//786893002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42200 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-09 00:48:29 +00:00
srdjan@google.com e718ae0eab Disable failing 'with_test_environment_test' until investigated.
Review URL: https://codereview.chromium.org//790573002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42196 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-08 23:03:22 +00:00
jakemac@google.com 31c524cdca update to polymer js 0.5.1
BUG= http://dartbug.com/21583
R=sigmund@google.com

Review URL: https://codereview.chromium.org//723393003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42114 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-04 17:13:11 +00:00
whesse@google.com 7254f7b649 Update status for Firefox 34.
BUG=dartbug.com/21787, dartbug.com/21526
R=ricow@google.com

Review URL: https://codereview.chromium.org//752173007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42107 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-04 15:17:59 +00:00
paulberry@google.com c1dc29c378 Mark analyzer's all_the_rest_test as failing on Windows.
BUG=dartbug.com/21772
TBR=scheglov@google.com

Review URL: https://codereview.chromium.org//771303002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42075 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-02 20:53:53 +00:00
alanknight@google.com 051984b521 Update status file for new VM-only tests
BUG=

Review URL: https://codereview.chromium.org//771293002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42074 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-02 20:41:26 +00:00
ricow@google.com 4cf6fb7f33 Mark pkg/analyzer/test/generated/incremental_resolver_test as slow on dart2js targets
Review URL: https://codereview.chromium.org//752823003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41948 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-25 10:01:34 +00:00
paulberry@google.com 651d589c2f Remove flaky check from reanalyze_concurrent_test.
This should avoid sporadic false failures with this test.  If in the
future we genuinely regress bug 21448, there is a danger that this
test won't catch it reliably, but that is mitigated by the fact that
(a) even flaky failures do get noticed, and (b) the bug was severe
enough that it probably would be noticed in manual testing.  The extra
risk seems worth it to avoid the sporadic false failures we've been
seeing.

BUG=dartbug.com/21638
R=scheglov@google.com

Review URL: https://codereview.chromium.org//724403003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41870 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-20 22:52:30 +00:00
rnystrom@google.com 9a5ad9c7d6 Fix glob list failure on Windows.
BUG=https://code.google.com/p/dart/issues/detail?id=21622
R=nweiz@google.com

Review URL: https://codereview.chromium.org//738863003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41811 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-18 22:19:27 +00:00
scheglov@google.com b8da9bc651 Format and sort analyzer and analysis_server packages.
R=brianwilkerson@google.com
BUG=

Review URL: https://codereview.chromium.org//725143004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41792 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-17 22:23:53 +00:00
nweiz@google.com 29cad5e093 Mark glob/list_test failing on Windows
R=rnystrom@google.com
BUG=21622

Review URL: https://codereview.chromium.org//730733002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41754 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-15 00:36:15 +00:00
ricow@google.com 61da64c332 Skip timing out tests on IE
R=whesse@google.com

Review URL: https://codereview.chromium.org//724823006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41739 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-14 12:36:40 +00:00
jakemac@google.com ca29633cc2 use shared code transformer, update web_components to remove .map and .concat files
This is a redo of https://codereview.chromium.org/540633002/ because I had deleted my local branch and didn't know how to recover it.

Review URL: https://codereview.chromium.org//724723003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41724 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-13 17:47:20 +00:00
whesse@google.com 89c156d596 Suppress flaky polymer tests on Safari
BUG=dartbug.com/21434
R=ricow@google.com

Review URL: https://codereview.chromium.org//713283002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41666 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-11 14:37:34 +00:00
nweiz@google.com 4a582ba08d Mark the source_span file test as passing.
R=rnystrom@google.com
TBR

Review URL: https://codereview.chromium.org//700923004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41615 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-07 21:11:33 +00:00
whesse@google.com 0198159166 Suppress failing test source_span/test/file_test.
BUG=dartbug.com/21533
R=lrn@google.com

Review URL: https://codereview.chromium.org//693393005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41593 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-07 08:42:47 +00:00
scheglov@google.com 60f01fdf36 Issue 20436. Restore analysis_server/test/integration/search/get_type_hierarchy_test on Windows.
I think it is fixed.

R=paulberry@google.com
BUG=

Review URL: https://codereview.chromium.org//695133004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41589 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-06 22:27:37 +00:00
paulberry@google.com 7225ac4794 Enable asynchrony test.
This test passes now that dartbug.com/21252 has been fixed.

R=danrubel@google.com

Review URL: https://codereview.chromium.org//700723006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41579 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-06 19:39:20 +00:00
whesse@google.com eb3c3e9381 Update status for flaky dartium tests.
BUG=dartbug.com/18931
R=ricow@google.com

Review URL: https://codereview.chromium.org//708503002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41567 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-06 16:58:44 +00:00
johnniwinther@google.com 09fbe78e71 Move dart2js from sdk/lib/_internal/compiler to pkg/compiler
BUG=

Review URL: https://codereview.chromium.org//694353007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41514 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-05 08:51:01 +00:00
johnniwinther@google.com 8637cfd322 Revert "Move dart2js from sdk/lib/_internal/compiler to pkg/compiler"
This reverts commit r41512.

BUG=

Review URL: https://codereview.chromium.org//693183006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41513 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-05 08:15:26 +00:00
johnniwinther@google.com 2b336e17f0 Move dart2js from sdk/lib/_internal/compiler to pkg/compiler
BUG=

Review URL: https://codereview.chromium.org//690103004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41512 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-05 07:09:04 +00:00
paulberry@google.com d55ac5e968 Disable integration test reanalyze_concurrent_test on debug buildbots.
It is timing out.

TBR=brianwilkerson@google.com

Review URL: https://codereview.chromium.org//701563002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41463 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-03 18:16:42 +00:00
sigmund@google.com 83cb5a410a Remove deprecated packages from the repo
R=jmesserly@google.com

Review URL: https://codereview.chromium.org//695603002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41429 260f80e4-7a28-3924-810f-c04153c831b5
2014-10-30 22:57:29 +00:00
whesse@google.com 2db6b324e1 Update Safari status files.
BUG=dartbug.com/21434

Review URL: https://codereview.chromium.org//687353006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41415 260f80e4-7a28-3924-810f-c04153c831b5
2014-10-30 10:17:19 +00:00
whesse@google.com 53264f42c0 Mark tests flaky on Safari 6.2
BUG=dartbug.com/21434
R=ricow@google.com

Review URL: https://codereview.chromium.org//659173003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41393 260f80e4-7a28-3924-810f-c04153c831b5
2014-10-29 10:30:25 +00:00
whesse@google.com aeba67e44e Add builder tag for Safari 6.2 slave. Update status files for Safari 6.2.
BUG=
R=ricow@google.com

Review URL: https://codereview.chromium.org//679153002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41323 260f80e4-7a28-3924-810f-c04153c831b5
2014-10-27 16:09:00 +00:00
paulberry@google.com 7611c5415a Add an integration test to verify that server I/O is asynchronous.
Currently disabled, since server I/O is currently synchronous.

BUG=dartbug.com/21252
R=danrubel@google.com

Review URL: https://codereview.chromium.org//668953002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41246 260f80e4-7a28-3924-810f-c04153c831b5
2014-10-22 15:48:06 +00:00
floitsch@google.com 32ef6273ae Mark some analyzer/analysis_server tests as slow.
R=ricow@google.com

Review URL: https://codereview.chromium.org//656163004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41147 260f80e4-7a28-3924-810f-c04153c831b5
2014-10-16 13:16:09 +00:00
ricow@google.com c416ea097d Mark the analyzer tests slow generally on dart2js
We are seeing these flake on several bots

Review URL: https://codereview.chromium.org//645063003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41140 260f80e4-7a28-3924-810f-c04153c831b5
2014-10-16 06:31:54 +00:00
floitsch@google.com 5c2ad49d55 Mark analyzer test as slow.
Review URL: https://codereview.chromium.org//655223002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41129 260f80e4-7a28-3924-810f-c04153c831b5
2014-10-15 13:47:50 +00:00
floitsch@google.com 9a8c878d48 Mark analyzer test as failing.
Add minimal example to lib/mirrors.

R=ricow@google.com

Review URL: https://codereview.chromium.org//655803002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41097 260f80e4-7a28-3924-810f-c04153c831b5
2014-10-14 13:44:38 +00:00
paulberry@google.com 69d1c6fb2b Disable test "check_all_test" on debug builds.
The only purpose of this test is to verify that analysis server code
generation is up to date, so it is sufficient to just run it on the
release buildbots, where is completes more quickly.

R=brianwilkerson@google.com

Review URL: https://codereview.chromium.org//651953005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41086 260f80e4-7a28-3924-810f-c04153c831b5
2014-10-13 21:49:50 +00:00
paulberry@google.com febb8f2e22 Split up large resolver_test.dart file.
This splits the four largest classes out of resolver_test.dart
and into their own files.  Hopefully this should help prevent
resolver_test.dart from timing out on the buildbots.

R=scheglov@google.com

Review URL: https://codereview.chromium.org//656543003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41085 260f80e4-7a28-3924-810f-c04153c831b5
2014-10-13 21:43:33 +00:00
paulberry@google.com 47f8e15878 Mark analyzer "resolver_test" as slow.
This file contains 1713 unit tests and should be split up into smaller
files.

TBR=scheglov@google.com

Review URL: https://codereview.chromium.org//643303002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41052 260f80e4-7a28-3924-810f-c04153c831b5
2014-10-10 20:40:48 +00:00
ricow@google.com aaa40e8855 Mark pkg/analyzer/test/generated/engine_test as skip on dart2js
It is flaky timing out

R=paulberry@google.com

Review URL: https://codereview.chromium.org//642673003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41012 260f80e4-7a28-3924-810f-c04153c831b5
2014-10-09 13:04:16 +00:00
vsm@google.com 314dd6e4f6 Status fix
TBR=leafp@google.com

Review URL: https://codereview.chromium.org//612173003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40791 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-29 22:02:59 +00:00
rnystrom@google.com ffa353e9d9 Fix glob list on Windows.
BUG=https://code.google.com/p/dart/issues/detail?id=21071
R=nweiz@google.com

Review URL: https://codereview.chromium.org//607963002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40732 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-26 19:47:39 +00:00
ricow@google.com 19c691bc30 Mark pkg/glob/test/list_test and two pub tests as failing on windows
pkg/glob/test/list_test is being tracked in issue 21071

The following two pub tests are being tracked in issue 21086
pub/test/global/binstubs/binstub_runs_executable_test
pub/test/global/binstubs/missing_script_test

Review URL: https://codereview.chromium.org//599163004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40668 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-25 05:59:08 +00:00
jakemac@google.com 52ef5fe84e mark as flaky not failing
Review URL: https://codereview.chromium.org//599093003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40647 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-24 20:28:45 +00:00
jakemac@google.com fa6a6c0cb3 mark dartium tests as flaky due to 18931
Review URL: https://codereview.chromium.org//599183003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40636 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-24 17:50:20 +00:00
jakemac@google.com a6f50d735b Update to polymer js version 0.4.1
BUG= http://dartbug.com/21035
R=sigmund@google.com

Review URL: https://codereview.chromium.org//588373003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40631 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-24 16:17:56 +00:00
nweiz@google.com 06017fb841 Add support for listing to the glob package.
R=rnystrom@google.com
BUG=17093

Review URL: https://codereview.chromium.org//549633002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40604 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-23 20:40:16 +00:00
whesse@google.com 90c7a56bdd Update status for Dartium tests.
BUG=dartbug.com/21012, dartbug.com/21000
R=ricow@google.com

Review URL: https://codereview.chromium.org//584803003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40491 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-19 10:22:04 +00:00
kevmoo@google.com 650012e159 fix win11 bots with status changes
TBR

Review URL: https://codereview.chromium.org//581273006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40487 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-19 04:20:24 +00:00
kevmoo@google.com 3d056175bc fix pkg status file for unittest
TBR

Review URL: https://codereview.chromium.org//587523002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40484 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-19 01:45:28 +00:00
kevmoo@google.com 38d6c15539 pkg/scheduled_test: status tweaks
BUG= https://code.google.com/p/dart/issues/detail?id=21007
R=nweiz@google.com

Review URL: https://codereview.chromium.org//583053002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40483 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-19 01:36:49 +00:00
kevmoo@google.com 5c6bc92daa pkg/scheduled_test updated status file for jsshell
R=nweiz@google.com

Review URL: https://codereview.chromium.org//583013002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40480 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-19 00:06:00 +00:00
kevmoo@google.com 02e029636b pkg/metatest: adding homepage to metatest pubspec
TBR

Review URL: https://codereview.chromium.org//585703002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40479 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-18 23:39:45 +00:00
kevmoo@google.com 615819acf9 Sharing metatest logic between unittest and scheduled_test
R=nweiz@google.com

Review URL: https://codereview.chromium.org//524153002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40475 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-18 22:40:13 +00:00
nweiz@google.com 6ee6d6b110 Mark a bunch of tests as passing now that stack_trace works with the new Firefox.
R=rnystrom@google.com

Review URL: https://codereview.chromium.org//578383003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40474 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-18 22:38:13 +00:00
jakemac@google.com 8c422a0862 fix findController for non-dart elements
BUG= http://dartbug.com/20931
R=sigmund@google.com

Review URL: https://codereview.chromium.org//582113002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40458 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-18 20:30:56 +00:00
sethladd@google.com b1ae6d0817 remove serialization. it's moved to github
BUG=
R=alanknight@google.com

Review URL: https://codereview.chromium.org//581243002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40456 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-18 20:07:25 +00:00
sethladd@google.com ba1ab7d8f5 Revert "remove serialization. it's moved to github"
This reverts commit e06d6fbb470445cdbd7875a7aa24f5ecb6ee04d4.

BUG=

Review URL: https://codereview.chromium.org//584473004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40451 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-18 18:30:25 +00:00
sethladd@google.com ca72cda5b6 remove serialization. it's moved to github
BUG=
R=alanknight@google.com

Review URL: https://codereview.chromium.org//572073002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40447 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-18 17:59:10 +00:00
ricow@google.com acb59f47b1 Mark pkg/analysis_server/test/socket_server_test as slow on jsshell
R=eernst@google.com

Review URL: https://codereview.chromium.org//579173002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40431 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-18 10:49:18 +00:00
karlklose@google.com c1597202c4 Fix typo in previous CL.
TBR=johnniwinther@google.com

Review URL: https://codereview.chromium.org//577153002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40425 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-18 07:17:08 +00:00
karlklose@google.com 74a5d0559d Update test expectations.
R=johnniwinther@google.com

Review URL: https://codereview.chromium.org//572933007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40424 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-18 07:10:20 +00:00
jakemac@google.com 5230bf6eca simple index.html files for folders that contain entry points
BUG= http://dartbug.com/20963
R=sigmund@google.com

Review URL: https://codereview.chromium.org//573863003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40408 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-17 22:14:16 +00:00
vsm@google.com 2eb587b49d Status fixes
TBR=terry@google.com,leafp@google.com

Review URL: https://codereview.chromium.org//565213006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40222 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-12 22:02:03 +00:00
karlklose@google.com e71b933bfe Make test as failing on safarimobilesim.
TBR=ricow@google.com

Review URL: https://codereview.chromium.org//562723004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40202 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-12 06:51:10 +00:00
ricow@google.com df319447f1 Remove suppressions for ie9
R=blois@google.com, whesse@google.com

Review URL: https://codereview.chromium.org//562883002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40201 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-12 06:01:14 +00:00
karlklose@google.com bde34d0efa Mark refactoring_test as Slow on js_shell.
TBR=jonniwinther@google.com

Review URL: https://codereview.chromium.org//558503004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40145 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-11 13:15:47 +00:00
vegorov@google.com 183abe7207 Fix StoreIndexedInstr input representation requirements for Int32/Uint32 arrays.
Previous implementation changed input representation depending on the propagated type of the value which violated assumptions made by SelectRepresentations phase.

Instead of using tagged/mint input require unboxed Int32/Uint32 input and insert explicit truncating unboxing when building StoreIndexed operation in the optimizer. This also leads to strictly better code and opens possibilities for further optimizations.

Implement Int32/Uint32 representation support on all platforms. This includes boxing, unboxing and unboxed converter operations.

Merge BoxInt32/BoxUint32 and UnboxInt32/UnboxUint32 instruction sequences to minimize duplication.

Improve instruction sequences by utilizing CARRY flag set by smi untagging where possible (ARM, ia32, x86).

Enable all tests that were disabled by r40078, r40079.

BUG=http://dartbug.com/20875
R=fschneider@google.com, johnmccutchan@google.com, srdjan@google.com, zra@google.com

Review URL: https://codereview.chromium.org//552303005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40143 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-11 12:32:54 +00:00
sigmund@google.com 6318e91c82 Mark template_attr test as failing in IE until we investigate the issue.
Review URL: https://codereview.chromium.org//562013002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40133 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-11 00:10:25 +00:00
jakemac@google.com fb2d027d36 add flaky tests :(
R=sigmund@google.com

Review URL: https://codereview.chromium.org//561033002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40127 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-10 22:54:36 +00:00
jakemac@google.com 589c718ac0 update polymer js to 0.4.0
BUG= http://dartbug.com/20809

The following files were not migrated, they used to be in platform.js
and are like polyfills, but are adding non-html spec functionality used
by polymer:

src/declaration/mdv.js
src/declaration/polymer.js
src/declaration/queue.js
src/declaration/styles.js
src/lib/dom.js
src/lib/lang.js
src/lib/loader.js
src/lib/styleloader.js
src/lib/url.js
src/system/compat.js
src/system/microtask.js
src/system/module.js
src/system/patches-mdv.js
src/system/unresolved.js

The following tests were not migrated. For the most part they are just
testing the features added by the files above:

test/html/loader-deduplicate.html
test/html/mdv-shadow.html
test/html/mdv-tests/polymer-expressions-tests.js
test/html/styling/recursive-style-import.html
test/html/url.html
test/js/bindMDV.js
test/js/oop.js
test/html/styling/rules/*
test/js/styling.js
test/js/register.js
test/js/utils.js
test/html/template-repeat-wrappers.html

R=sigmund@google.com

Review URL: https://codereview.chromium.org//558673004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40120 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-10 21:41:47 +00:00
iposva@google.com f208566475 - Disable tests failing failing with --optimization-counter-threshold=5.
Review URL: https://codereview.chromium.org//562523002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40079 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-10 03:52:21 +00:00
ricow@google.com f6bec3b946 Suppress flakiness in pkg/observe/test/list_path_observer_test on IE
Filed issue 20849 to track this

Review URL: https://codereview.chromium.org//546373003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39983 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-08 17:39:23 +00:00
kevmoo@google.com e0fa649db9 pkg/math: remove placeholder
R=sethladd@google.com

Review URL: https://codereview.chromium.org//541523002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39946 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-07 00:30:06 +00:00
nweiz@google.com c37ddb51b3 Fix glob match and parse tests for Windows and URL styles.
R=rnystrom@google.com
BUG=20788, 20789

Review URL: https://codereview.chromium.org//533323003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39922 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-05 19:04:34 +00:00
sigmund@google.com 1781d2cb42 Step one towards stable error messages with details:
- switches polymer to use a messages type
 - autogenerates an HTML page from the message list.
 - use these messages on polymer transformers
 - moves build_logger to code_Transformers, so we can also use this in other packages.

Still pending to do more, for example, find a permanent location and URI scheme for messages
so we can show them on the command-line, improve the UI to tak advantage of clustering, etc.

But I think it's good enough to get it in and iterate afterwards

R=jakemac@google.com, kathyw@google.com

Review URL: https://codereview.chromium.org//513023002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39884 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-04 20:28:15 +00:00
jakemac@google.com c9227e35e3 delete debug only files from output in release mode
Note: This adds a couple hundred milliseconds to the build for my sample application. However, that should remain fairly constant even if we add more files later since we already paid the price of spinning up the transformers.

BUG= http://dartbug.com/19521
R=sigmund@google.com

Review URL: https://codereview.chromium.org//531943002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39828 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-03 20:01:48 +00:00
ricow@google.com 686409778b Mark pkg/glob/test/match_test as failing on browsers
Mark 	pkg/glob/test/match_test and pkg/glob/test/parse_test failing on windows on the vm

Filed issues 20789 and 20788 to track this

Review URL: https://codereview.chromium.org//529363002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39790 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-03 05:58:17 +00:00
srawlins@google.com 400ffc0c48 Addressing Issue 5991, where functions are requested for:
* greatest common denominator
* modulo inverse
* modulo exponentiation

In addition, I implemented functions for least common multiple and extended gcd, as they are so closely related.

These functions are respectively named gcd(), invert(), modexp(), lcm(), gcdext(), provided in the math package,
and tested in the math package.

When passed arguments larger than 2^53, a javascript implementation of dart will yield unpredictable results,
as is true with all of the dart:int methods.

Some of the function names are arbitrary, as they go by different names in different languages:

* For modular multiplicative inverse, I chose "invert." It goes by "invert" in GMP [1], "modInverse" in Java and Go,
"invmod" in Julia, "PowerMod" in Mathematica, and "pow" in Python.
* For modular exponentiation, I chose "powmod." It goes by "powm" in GMP, "exp" in Go, "modPow" in Java,
"powermod" in Julia and Mathematica, and "pow" in Python (optional arg).
* For extended gcd, I chose "gcdext." It goes by "gcdext" in GMP, "gcd" in Go (optional return args), "gcdx" in Julia,
and "ExtendedGCD" in Mathematica.

BUG= https://code.google.com/p/dart/issues/detail?id=5991

[1] https://gmplib.org/

R=lrn@google.com

Review URL: https://codereview.chromium.org//475463005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39769 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-02 19:49:48 +00:00
scheglov@google.com 844f477d10 Use MockSdk to speed-up tests.
R=paulberry@google.com, brianwilkerson@google.com
BUG=

Review URL: https://codereview.chromium.org//524463006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39717 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-30 05:51:09 +00:00
paulberry@google.com b33b0f7ff0 Mark analyzer2dart tests as "slow" on debug bots
Diet parsing isn't currently used so these tests wind up parsing the
entire SDK.

R=brianwilkerson@google.com

Review URL: https://codereview.chromium.org//522743002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39701 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-29 14:24:41 +00:00
paulberry@google.com 658ba06a25 Skip dart2analyzer tests on browsers
TBR=ricow@google.com

Review URL: https://codereview.chromium.org//517553002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39648 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-28 12:05:17 +00:00
sigmund@google.com 4ad3066210 Mark template_binding/test/custom_element_bindings_test as flaky
BUG=https://code.google.com/p/dart/issues/detail?id=20714
TBR=jakemac@google.com

Review URL: https://codereview.chromium.org//516733002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39632 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-28 01:29:30 +00:00
jakemac@google.com c0badd0fc4 flaky test
R=sigmund@google.com

Review URL: https://codereview.chromium.org//514723003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39600 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-27 16:06:16 +00:00
jakemac@google.com 3a8813b38d add content tag to the js_interop_test element so its content is queryable
update web_components to latest

BUG= http://dartbug.com/20413
R=sigmund@google.com

Review URL: https://codereview.chromium.org//507653004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39596 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-27 14:58:13 +00:00
paulberry@google.com df89cc1494 Run all pub tests on Windows with -j1
Should avoid timeouts with some particularly resource-intensive tests
(e.g. analysis server integration tests).

TBR=ricow@google.com

Review URL: https://codereview.chromium.org//509903002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39591 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-27 11:35:03 +00:00
kustermann@google.com 8e77e9c704 Remove obsolete http_base package
R=sgjesse@google.com

Review URL: https://codereview.chromium.org//495533003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39543 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-26 10:09:34 +00:00
whesse@google.com 3d48991511 Update co19 status for dartium and android.
BUG=dartbug.com/19544
R=kustermann@google.com

Review URL: https://codereview.chromium.org//489383002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39450 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-21 13:30:41 +00:00
whesse@google.com 99180f5797 Update status for pkg tests.
BUG=dartbug.com/20575 dartbug.com/20576

TBR=kustermann@google.com

Review URL: https://codereview.chromium.org//481943003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39366 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-19 09:35:46 +00:00
paulberry@google.com 7226309842 Import analysis_services.dart into analysis_server.dart.
Having two separate packages doesn't really have any benefit, and has
the downside of forcing us to carefully avoid circular dependencies
between the two.  It makes more sense to just combine them.

This is largely a mechanical change consisting of the following renames:

1. pkg/analysis_services/lib/src/* -> pkg/analysis_server/lib/src/services/*
2. pkg/analysis_services/lib/* -> pkg/analysis_server/lib/src/services/*
3. pkg/analysis_services/test/* -> pkg/analysis_server/test/services/*

There were 4 instances where 1 and 2 created a collision:
.../services/correction/assist.dart, .../services/correction/fix.dart,
.../services/refactoring/refactoring.dart, and
.../services/search/search_engine_internal.dart.  To fix the
collision, the files coming from pkg/analysis_services/lib/src were
renamed to "..._internal.dart".

In addition, pkg/analysis_services/test/test_all.dart was modified to
call pkg/analysis_services/test/services/test_all.dart.

R=brianwilkerson@google.com, scheglov@google.com

Review URL: https://codereview.chromium.org//484733003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39349 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-18 20:17:49 +00:00
jakemac@google.com 5f94bfb494 Revert "Roll polymer to 0.3.5"
This reverts commit 9923eeb0a39a13926406896a78878237b32fa10e.

BUG=

Review URL: https://codereview.chromium.org//482763002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39336 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-18 15:59:01 +00:00
jakemac@google.com 82150beb8a Roll polymer to 0.3.5
The following files were not migrated, mostly tests that we don't have an equivalent for (that I could find):

declaration/properties.js
test/html/element-registration.html
test/html/bind-object-repeat.html
test/html/publish-attributes.html

Also, observe.js was not migrated since it no changes looked to be applicable to us, https://github.com/Polymer/observe-js/compare/0.3.4...0.3.5.

BUG= http://dartbug.com/20413
R=sigmund@google.com

Review URL: https://codereview.chromium.org//469823002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39330 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-18 14:23:03 +00:00
whesse@google.com 3176e3c5e8 Update test status for polymer on Windows.
BUG=dartbug.com/19326
R=kustermann@google.com

Review URL: https://codereview.chromium.org//484623002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39324 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-18 08:05:24 +00:00
paulberry@google.com f822f41189 Update analysis server and integration tests to match new ChangeContentOverlay.
The spec was changed in r39199 so that ChangeContentOverlay contains a
list of edits rather than a single edit.  This updates the analysis
server and integration tests accordingly.

BUG=dartbug.com/20495
R=brianwilkerson@google.com, scheglov@google.com

Review URL: https://codereview.chromium.org//472613002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39218 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-13 20:04:55 +00:00
paulberry@google.com 21e307fb6b Skip analysis server integration tests with dart2js
TBR=jwren@google.com

Review URL: https://codereview.chromium.org//474533002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39213 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-13 18:31:14 +00:00
paulberry@google.com 159c19b0fc Don't expect update_content_test to fail for analyzer.
This is a runtime failure only; analysis of the test should still
succeed.

TBR=brianwilkerson@google.com

Review URL: https://codereview.chromium.org//469043002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39211 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-13 18:09:21 +00:00
paulberry@google.com 96d5bd1bf0 Add union types to the analysis server API spec.
R=brianwilkerson@google.com, jwren@google.com

Review URL: https://codereview.chromium.org//469673002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39208 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-13 17:38:11 +00:00
paulberry@google.com 3e0ed734bf Skip pkg/analysis_server/tool/spec/check_all_test on browsers.
TBR=jwren@google.com

Review URL: https://codereview.chromium.org//463053003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39203 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-13 15:56:34 +00:00
paulberry@google.com eb73a6c2b3 Mark analysis server get_type_hierarchy_test as flaky on Windows
The symptoms are the same as the problem fixed in r39105, however I
suspect that the root cause is different, since the failure was
previously repeatable and is now sporadic.

R=scheglov@google.com

Review URL: https://codereview.chromium.org//466103002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39165 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-12 21:33:56 +00:00
ricow@google.com 0584a86f99 Skip pkg/analysis_server/test/integration/analysis/update_content_test server in debug mode
This is timing out

Review URL: https://codereview.chromium.org//464773003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39126 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-12 10:58:53 +00:00
paulberry@google.com 19a44a67a6 Split up server_domain_int_test.dart; regularize integration test directories.
With this change, there is a separate subfolder in "test/integration"
for each domain, and each subfolder has its own "test_all.dart".

This change is almost entirely code motion.  The only material change
is that two tests have been dropped:

- test_connected(): this test is now unnecessary since every time the
  "server.connected" message is received, the generated code in
  integration_test_methods.dart verifies that it is well-formed.

- test_error(): this was a placeholder to remind us to test the
  "server.error" notification.  On further reflection, it's unlikely
  that we'll be able to integration test this notification, since it
  only occurs in the event of a server bug.

R=jwren@google.com

Review URL: https://codereview.chromium.org//458453003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39112 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-11 22:25:26 +00:00
paulberry@google.com 931b0afaa6 Split analysis_domain_int_test.dart into several test files.
This test was timing out on the debug build bots because it had 6
sub-tests, each of which started a separate instance of the analysis
server.  Split it out to one test per file.

R=scheglov@google.com

Review URL: https://codereview.chromium.org//465513002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39095 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-11 17:39:10 +00:00
paulberry@google.com 435f486eb5 Mark server_domain_int_test as slow on debug bots
TBR=scheglov@google.com

Review URL: https://codereview.chromium.org//459673002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39066 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-09 23:45:22 +00:00
paulberry@google.com abfa8dd268 Rework search_domain_int_test to avoid timeouts.
Now all sub-tests are run using a single analysis server so that the
SDK only needs to be analyzed once.

Reduces test time by about 9x.

R=scheglov@google.com

Review URL: https://codereview.chromium.org//455983002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39064 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-09 14:19:17 +00:00
paulberry@google.com e37e8a0605 Disable search_domain_int_test on Windows.
I will work on a fix for this next week.

TBR=scheglov@google.com

Review URL: https://codereview.chromium.org//453123002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39054 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-08 22:07:57 +00:00
paulberry@google.com 52d6abc907 Mark search_domain_int_test as slow.
In a follow CL I will rework this test.

TBR=scheglov@google.com

Review URL: https://codereview.chromium.org//453093003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39051 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-08 21:08:51 +00:00
whesse@google.com 0986f8b4c8 Deflake status files for Android content_shell tests.
R=ricow@google.com

Review URL: https://codereview.chromium.org//449423002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39033 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-08 09:54:58 +00:00
paulberry@google.com 75d6245e4f Apply workaround for bug 13921 to new test in pkg/unittest.
TBR=kevmoo@google.com

Review URL: https://codereview.chromium.org//456543002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39019 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-08 01:31:17 +00:00
kustermann@google.com a385a28e5a Add implementations for Headers, Request, Response and dart:io/dart:html clients to http_base
R=sgjesse@google.com

Review URL: https://codereview.chromium.org//445933004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38984 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-07 13:01:59 +00:00
sigmund@google.com b41df9c51c Use as dynamic to get rid of warnigns in code_transformers
R=scheglov@google.com

Review URL: https://codereview.chromium.org//451493002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38951 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-06 20:46:58 +00:00
scheglov@google.com c5263aae9f Breaking changes in 'analyzer' package.
1. Source.uri added.

2. DartSdk.fromEncoding() replaced with fromFileUri().

  This CL cannot be committed as is until pkg/code_transformers is fixed.

R=brianwilkerson@google.com, sigmund@google.com
BUG=

Review URL: https://codereview.chromium.org//428303004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38949 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-06 20:41:42 +00:00
jakemac@google.com 1e96833d23 Polymer transformers write to a *._buildLogs file and inject an element in that dom to show these elements when not in release mode (pub serve).
R=sigmund@google.com

Review URL: https://codereview.chromium.org//427623002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38946 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-06 20:27:03 +00:00
hausner@google.com d5e8342071 Disable some angular tests until perf_api.dart bug is fixed
class Profiler contains an illegal field initializer for field ‘counters’.

See github perf_api.dart issue #5. 

TBR=justinfagnani@google.com

Review URL: https://codereview.chromium.org//440233004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38916 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-05 23:57:57 +00:00
rmacnak@google.com 46639a66f4 Mark polymer tests as passing.
BUG=http://dartbug.com/20307g
R=sigmund@google.com, vsm@google.com

Review URL: https://codereview.chromium.org//439733005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38870 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-04 17:27:07 +00:00
fschneider@google.com eab5e4e50b Skip some slow analysis server tests on ARM and MIPS simulators.
R=paulberry@google.com, whesse@google.com

Review URL: https://codereview.chromium.org//433153005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38858 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-04 14:00:56 +00:00
whesse@google.com f402f8902a Update status file for dart2js --csp bot.
Status line said $checked instead of $csp.

BUG=
R=ricow@google.com

Review URL: https://codereview.chromium.org//441643005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38856 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-04 13:26:00 +00:00
whesse@google.com bf90c871c7 Update status of android content_shell tests.
BUG=dartbug.com/20348
R=ricow@google.com

Review URL: https://codereview.chromium.org//433173003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38853 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-04 11:31:07 +00:00
whesse@google.com 029448c426 Restore some status file lines removed in r38829
Two tests are failing on dart2js drt, and their lines were removed.

BUG=dartbug.com/19329
R=ricow@google.com

Review URL: https://codereview.chromium.org//441643003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38852 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-04 09:17:16 +00:00
whesse@google.com 38386b5423 Restore flaky test suppressions removed in r33829
BUG=dartbug.com/18931
R=kustermann@google.com

Review URL: https://codereview.chromium.org//436893002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38833 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-01 13:30:00 +00:00
whesse@google.com ee63b468bb Update status for pkg tests on dartium, drt, and ContentShellOnAndroid. Start running on android.
BUG=dartbug.com/18931
R=ricow@google.com

Review URL: https://codereview.chromium.org//432353003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38829 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-01 11:47:59 +00:00
vsm@google.com 5b6603995e Mark broken / timing out tests as skip
TBR=sigmund@google.com,ricow@google.com

Review URL: https://codereview.chromium.org//432293002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38824 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-01 07:59:47 +00:00
scheglov@google.com 57f076f17f New analyzer snapshot.
Not to be published.

R=brianwilkerson@google.com
BUG=

Review URL: https://codereview.chromium.org//435483002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38764 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-31 00:40:17 +00:00
nweiz@google.com e572707842 Fix csslib test failures on IE10.
This will release csslib 0.11.0+1.

BUG=20274
R=sigmund@google.com

Review URL: https://codereview.chromium.org//432513003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38753 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-30 21:30:35 +00:00
ricow@google.com 6997a1ae4c Mark pkg/csslib/test/declaration_test and pkg/csslib/test/mixin_test as failing on ie9 and ie10
Filed issue 20274 to track this

Review URL: https://codereview.chromium.org//426123006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38732 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-30 13:45:47 +00:00
paulberry@google.com cb63f50483 Fix analysis server integration tests on Windows.
Platform.script is a URI.  To safely convert it to a Windows path we
need to use .toFilePath(windows: ...).  Previously we used .path,
which resulted in passing nonsensical paths to the VM when invoking
the analysis server subprocess.

BUG=dartbug.com/20252
R=ricow@google.com

Review URL: https://codereview.chromium.org//423283002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38730 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-30 12:40:34 +00:00
sigmund@google.com 769782b5d4 Fix CSP mode of the polymer compiler. Turns out that inline Javascript <script>
tags are also not allowed (unless you have unsafe-inline). This fixes our build
to extract code for those script tags as well.

R=blois@google.com

Review URL: https://codereview.chromium.org//424213004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38707 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-29 22:11:56 +00:00
ricow@google.com 898bb1549e Mark pkg/analysis_server/test/integration/analysis_domain_int_test as slow in debug mode
This is taking a long time to complete in debug mode

R=paulberry@google.com

Review URL: https://codereview.chromium.org//421053010

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38679 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-29 16:45:52 +00:00
ricow@google.com 4352e4f6ae Remove package root hack from the analysis server integration testing
Use the one provided by Platform instead.

Remove suppression from status file

BUG=20251
R=paulberry@google.com

Review URL: https://codereview.chromium.org//423143002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38674 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-29 15:38:45 +00:00
ricow@google.com 80e607dbc1 Suppress analysis server integration test failures in debug mode and on windows.
I have filed http://dartbug.com/20251 and http://dartbug.com/20252 to track this.

R=whesse@google.com

Review URL: https://codereview.chromium.org//425993002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38668 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-29 12:23:53 +00:00
sigmund@google.com c7f5071ead mark dartium test as flaky
BUG=

Review URL: https://codereview.chromium.org//421363003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38651 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-28 21:26:07 +00:00
sigmund@google.com 7801ac64b9 Roll polymer packages to version 0.3.4
R=jakemac@google.com, jmesserly@google.com

Review URL: https://codereview.chromium.org//420673002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38644 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-28 19:57:11 +00:00
floitsch@google.com fa5e6ced45 Update status files after update to FF31.
Review URL: https://codereview.chromium.org//425483002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38599 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-26 00:23:21 +00:00
kevmoo@google.com ca67b0de8e pkg.status: remove deleted test
R=rnystrom@google.com

Review URL: https://codereview.chromium.org//410063003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38595 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-25 21:28:06 +00:00
nweiz@google.com a6593d32bc Revert r38549, r38552, and r38557.
It's currently too difficult to include a third party package for it to be
worthwhile for this use case.

R=alanknight@google.com

Review URL: https://codereview.chromium.org//419683002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38564 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-25 00:32:40 +00:00
alanknight@google.com 6c7509a334 Fix status file for additional message extraction test
BUG=

Review URL: https://codereview.chromium.org//418183002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38558 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-24 21:52:15 +00:00
nweiz@google.com de4d21618d Skip the pool tests on the Dartium bots.
BUG=
R=efortuna@google.com

Review URL: https://codereview.chromium.org//412393002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38557 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-24 21:48:43 +00:00
paulberry@google.com 850bd0b980 Detect invalid const constructor due to non-const initializer in field declaration.
BUG=dartbug.com/18780
R=scheglov@google.com

Review URL: https://codereview.chromium.org//397823004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38432 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-21 15:52:31 +00:00
kustermann@google.com 81c6a09b9a Mark two analysis server tests as Pass,Slow instead of Slow
Review URL: https://codereview.chromium.org//393323006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38325 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-17 11:09:36 +00:00
kustermann@google.com 76e713a52f Mark two analysis server tests as slow
R=whesse@google.com

Review URL: https://codereview.chromium.org//400603002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38324 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-17 10:19:24 +00:00
floitsch@google.com 2f09d46006 js-interop test is flaky now.
Review URL: https://codereview.chromium.org//396243005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38293 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-16 17:33:04 +00:00
floitsch@google.com f900e3c868 Mark two polymer tests as failing/flaky.
Review URL: https://codereview.chromium.org//392253002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38282 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-16 12:55:01 +00:00
floitsch@google.com 134829c270 Mark another analysis test as slow.
Review URL: https://codereview.chromium.org//395153002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38277 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-16 11:12:36 +00:00
floitsch@google.com f47fe8d940 Mark another analysis test as slow.
Review URL: https://codereview.chromium.org//397963002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38276 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-16 11:10:09 +00:00
floitsch@google.com 2ad8178d6d Mark tests as slow.
Review URL: https://codereview.chromium.org//397953002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38275 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-16 10:54:58 +00:00
ricow@google.com 1f116519d4 Fix type in stub_core_library suppression
TBR=nweiz

Review URL: https://codereview.chromium.org//392063004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38273 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-16 06:28:35 +00:00
nweiz@google.com ea88b3c53c Don't run the stub tests on the browser.
R=rnystrom@google.com

Review URL: https://codereview.chromium.org//396853002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38270 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-16 00:45:48 +00:00
jakemac@google.com 4b85b6a43a Added test for two way bindings with strings, ints, and bools.
Previously ints and bools were broken when toggling back and forth.

BUG=http://dartbug.com/19692
R=sigmund@google.com

Review URL: https://codereview.chromium.org//379213002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38097 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-09 18:35:01 +00:00
scheglov@google.com 41623274f4 Skip analysis_services tests in browsers.
TBR

R=brianwilkerson@google.com
BUG=

Review URL: https://codereview.chromium.org//375693005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38048 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-07 23:39:37 +00:00
scheglov@google.com 71d80abdce Skip analyzer tests in browsers.
As we do for analysis_server.

R=brianwilkerson@google.com
BUG=

Review URL: https://codereview.chromium.org//365213003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37997 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-04 01:21:45 +00:00
floitsch@google.com 1c511b0a1a Mark a few more tests as slow.
Review URL: https://codereview.chromium.org//370523004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37980 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-03 11:24:09 +00:00
floitsch@google.com edefd2e3dd Another slow test.
Review URL: https://codereview.chromium.org//368653004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37894 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-01 18:22:25 +00:00
floitsch@google.com bf095389c8 Another slow test.
Review URL: https://codereview.chromium.org//364663003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37893 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-01 18:17:33 +00:00
floitsch@google.com e2d46b841a Mark analyser tests as slow.
Review URL: https://codereview.chromium.org//362043004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37888 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-01 17:40:47 +00:00
karlklose@google.com 4d005bc321 Mark tests as only failing on windows.
R=johnniwinther@google.com

Review URL: https://codereview.chromium.org//367693002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37876 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-01 13:54:43 +00:00
karlklose@google.com 4388e8a5da Mark some tests as failing with firefox 30.
R=johnniwinther@google.com
BUG= http://dartbug.com/19750

Review URL: https://codereview.chromium.org//364583003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37865 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-01 12:19:42 +00:00
karlklose@google.com 41d03c5082 Mark java_core_test as timeout on ie10.
TBR=johnniwinther@google.com

Review URL: https://codereview.chromium.org//360913002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37850 260f80e4-7a28-3924-810f-c04153c831b5
2014-07-01 07:57:42 +00:00
scheglov@google.com df752477d3 [TBR] Remove status lines for ast_test and parser_test.
R=brianwilkerson@google.com
BUG=

Review URL: https://codereview.chromium.org//359663002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37771 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-26 23:30:48 +00:00
sigmund@google.com b649c27af7 Use dart.js in release mode to workaround dartbug.com/19653
R=jmesserly@google.com

Review URL: https://codereview.chromium.org//330683003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37753 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-26 20:06:14 +00:00
ricow@google.com 50a8d6ed2b Mark pkg/scheduled_test/test/scheduled_server_test as slow in debug mode on the vm
R=whesse@google.com

Review URL: https://codereview.chromium.org//343403005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37739 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-26 13:06:59 +00:00
vsm@google.com dd64446320 Update Dartium status for flaky polymer tests
Not sure this is the same issue as before, but these tests have been flaking as well.

TBR=jmesserly@google.com,leafp@google.com

Review URL: https://codereview.chromium.org//349613003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37724 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-26 07:08:00 +00:00
alanknight@google.com 88025c45dc reverting 334413009
BUG=

Review URL: https://codereview.chromium.org//347963005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37710 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-25 22:35:53 +00:00
alanknight@google.com a5bbdd142e Remove test suppression in Intl that was there for IE9
BUG=
R=efortuna@google.com

Review URL: https://codereview.chromium.org//334413009

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37708 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-25 21:40:35 +00:00
jmesserly@google.com 0f317b4fd4 fix chrome 35 polymer status
also mark one test passing on ie9 now

One test is failing due to 35 having buggy custom elements, and I guess the newest polyfill removed the workaround(s)

For now I marked status as failing, though bots will go red unfortunately when Chrome does update. I left the comment there to make it obvious to whoever sees that later.

Review URL: https://codereview.chromium.org//333223011

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37635 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-24 02:04:54 +00:00
jmesserly@google.com 1aa432e42b test updates from latest web component polyfill roll
It's fun when tests "fail" because they're now passing :)

Review URL: https://codereview.chromium.org//350653007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37632 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-23 23:43:08 +00:00
karlklose@google.com 3c13a0b8e5 Change test expectation.
TBR=johnniwinther@google.com,ricow@google.com

Review URL: https://codereview.chromium.org//342273002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37535 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-20 07:42:00 +00:00
vsm@google.com d198ce27e5 Update status for flaky test
R=whesse@google.com

Review URL: https://codereview.chromium.org//347763002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37485 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-19 11:07:40 +00:00
vsm@google.com 42d351783e Update status files for debug timeouts
These tests are timing out on Dartium in debug mode.  The time outs are due to actually assertion failures.  See filed bugs for each test.

R=whesse@google.com

Review URL: https://codereview.chromium.org//337333002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37390 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-17 09:32:47 +00:00
srdjan@google.com 097f675b5e Disable pkg debug mode tests that otherwise would timeout.
R=regis@google.com

Review URL: https://codereview.chromium.org//334233004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37379 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-16 23:04:17 +00:00
srdjan@google.com a7eecfddec barback/test/package_graph/repetition_test times out in debug mode. Mark it as such.
R=regis@google.com

Review URL: https://codereview.chromium.org//334293003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37372 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-16 19:44:26 +00:00
karlklose@google.com 9096be81df Mark some tests as failing on drt.
R=ricow@google.com

Review URL: https://codereview.chromium.org//336583004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37342 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-14 07:33:37 +00:00
karlklose@google.com 692ec4044a Remove (invalid) suppression of interop_test.
R=ricow@google.com

Review URL: https://codereview.chromium.org//330913002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37324 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-13 18:11:15 +00:00
karlklose@google.com 194ffff045 More fixes to test expectations on dart2js-chrome.
TBR=ricow@google.com

Review URL: https://codereview.chromium.org//330863002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37318 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-13 16:54:04 +00:00
paulberry@google.com 6c8a5e3289 Use a mock SDK for most analysis server tests.
This should allow the tests to complete quickly on slower buildbots.

R=brianwilkerson@google.com, scheglov@google.com

Review URL: https://codereview.chromium.org//334543002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37281 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-12 16:52:28 +00:00
sra@google.com 8a96433126 Identify the name of the prototype extended by out-of-app custom elements
BUG=
R=sigmund@google.com

Review URL: https://codereview.chromium.org//329723002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37247 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-11 22:26:29 +00:00
sigmund@google.com edbb7d16e0 Detect and wrap JS-CustomEvents if applicable. Include created_watcher and
update a couple dependencies.

R=jmesserly@google.com

Review URL: https://codereview.chromium.org//317013007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37182 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-10 14:58:32 +00:00
karlklose@google.com 25b770ba0a Mark some angular and webcomponent tests as failing.
BUG= http://dartbug.com/19329
R=kustermann@google.com

Review URL: https://codereview.chromium.org//326893002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37172 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-10 11:43:16 +00:00
sigmund@google.com c53924025e Update status files for various flaky and failing tests in the bots.
Review URL: https://codereview.chromium.org//323003004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37157 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-10 05:33:00 +00:00
sigmund@google.com c4b8e328ff Fix for web_component tests. Take 4
R=jmesserly@google.com

Review URL: https://codereview.chromium.org//327663004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37153 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-10 01:08:47 +00:00
jmesserly@google.com 708ce2d93e polymer -- fix for ie10
seems to be an interaction between the CE polyfill when it doesn't have __proto__, our patching of register(), and JS interop
BUG= http://dartbug.com/18870 http://dartbug.com/19265
R=sigmund@google.com

Review URL: https://codereview.chromium.org//326633006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37150 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-10 00:04:47 +00:00
sigmund@google.com 9fb4dd4771 Make bots green.
TBR=jmesserly@google.com

Review URL: https://codereview.chromium.org//322023003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37148 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-09 23:50:21 +00:00
kevmoo@google.com 4738ae92f4 pkg/unittest: test cleanup
R=sigmund@google.com

Review URL: https://codereview.chromium.org//319983005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37147 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-09 23:40:08 +00:00
sigmund@google.com 4c1d2a461b Add "created-watcher" to the web_components package. This was adapted from
Pete's CL (https://codereview.chromium.org/184033007/). I've marked the
differences in the CL.

R=jmesserly@google.com

Review URL: https://codereview.chromium.org//319263002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37144 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-09 22:50:52 +00:00
jmesserly@google.com ceefae920e adjust polymer ie9, ie10 status
Review URL: https://codereview.chromium.org//314303007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37086 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-06 17:09:18 +00:00
jmesserly@google.com 549b4890c7 restore issue 18931 status entires
(my attempt at removing them didn't work)

Review URL: https://codereview.chromium.org//314133006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37072 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-06 06:52:22 +00:00
jmesserly@google.com 6812db90f9 mark failures for 19265
Review URL: https://codereview.chromium.org//319823004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37068 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-06 06:01:32 +00:00
jmesserly@google.com b6af10c40a update polymer, nodebind, and templatebinding
R=sigmund@google.com

Review URL: https://codereview.chromium.org//307793002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37066 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-06 05:11:14 +00:00
kevmoo@google.com ec3c0eb221 pkg/matcher: update status file for moved test
TBR

Review URL: https://codereview.chromium.org//317943002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37050 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-05 20:18:26 +00:00
kevmoo@google.com 925e860637 pkg/matcher: reapply 36881,36896 working around Issue 19173
Reverted in 36912

R=sigmund@google.com

Review URL: https://codereview.chromium.org//317733006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37036 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-05 17:11:03 +00:00
sigmund@google.com 38cfea1517 Update status file for http_multi_server tests.
TBR=nweiz@google.com

Review URL: https://codereview.chromium.org//318853002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37027 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-05 02:26:19 +00:00
ajohnsen@google.com 146f95135e Use 'Directory.watch' on Windows in pkg/watcher, instead of pooling.
This is a close copy of MacOS, except for the special handling on mac, and the extra watcher on Windows for detecting if the watched folder is deleted.

BUG=https://code.google.com/p/dart/issues/detail?id=14428,https://code.google.com/p/dart/issues/detail?id=18108,http://code.google.com/p/dart/issues/detail?id=19189
R=kasperl@google.com, sgjesse@google.com

Review URL: https://codereview.chromium.org//312743002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36988 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-04 10:23:32 +00:00
ricow@google.com 872730bdf4 Mark pkg/polymer/test/event_handlers_test as failing on dart2js checked drt
Filed issue 19190 to track this

Review URL: https://codereview.chromium.org//314943003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36978 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-04 06:04:19 +00:00
kevmoo@google.com b4c45fc15c pkg/matcher: Reverting 36881,36896 while investigating dart2js checked crash
TBR

Review URL: https://codereview.chromium.org//313563002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36912 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-03 07:10:01 +00:00
justinfagnani@google.com f2b9d001ce Mark syntax_test as failing on IE
BUG=https://code.google.com/p/dart/issues/detail?id=19138
R=sigmund@google.com

Review URL: https://codereview.chromium.org//308373002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36901 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-02 21:26:05 +00:00
justinfagnani@google.com 45b8947553 Add support for "as" expressions. Refactor "in" expression support.
BUG=
R=jmesserly@google.com

Review URL: https://codereview.chromium.org//141703024

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36887 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-02 18:13:49 +00:00
kevmoo@google.com 725bd40ccf pkg/matcher: cleanup, updates, deprecations, fixes
R=sigmund@google.com

Review URL: https://codereview.chromium.org//306283002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36881 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-02 16:54:44 +00:00
regis@google.com 1448b82b83 Disable analysis_server tests on all simulator platforms as they are too slow.
R=scheglov@google.com

Review URL: https://codereview.chromium.org//302073002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36810 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-29 22:28:24 +00:00
sigmund@google.com b8e0779330 Patch long names in polymer/e2e_test/... (updates test_suite.dart)
R=jmesserly@google.com, ricow@google.com

Review URL: https://codereview.chromium.org//305633003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36755 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-28 18:14:18 +00:00
scheglov@google.com 73384dcbed Use Posix style for memory resources.
R=brianwilkerson@google.com, ricow@google.com
BUG=

Review URL: https://codereview.chromium.org//300043009

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36700 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-27 18:25:31 +00:00
ricow@google.com d7bdf803e2 Suppress failurs in new polymer e2e tests on windows on chrome
Filed issue 19017 to track this

R=kasperl@google.com

Review URL: https://codereview.chromium.org//299373003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36631 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-26 11:44:07 +00:00
ricow@google.com 06d61f23ea Mark pkg/analysis_server/test/resource_test as failing on windows.
This started failing after being added here:
https://code.google.com/p/dart/source/detail?r=36613

Filed http://dartbug.com/19014 to track this

Review URL: https://codereview.chromium.org//300553004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36618 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-26 07:17:51 +00:00
sigmund@google.com 73e23be2b6 Bring back initPolymer, allow boot.js only if using "polymer_experimental.html".
R=jmesserly@google.com

Review URL: https://codereview.chromium.org//293023008

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36578 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-23 18:30:52 +00:00
ricow@google.com 05f97fb39b Mark pkg/scheduled_test/test/scheduled_stream/stream_matcher_test Slow
Review URL: https://codereview.chromium.org//292313007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36555 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-23 09:51:46 +00:00
vsm@google.com ddfe328a03 Status fixes for Dartium
The NodeIterator_basic_t01 test appears to pass reliably now - one of
yesterday's fixes?

I'm also seeing more flaky Polymer related issues.  These are inconsistent.  We appear to have some bad timing issue.  This particular run hit a lot of them:

http://chromegw.corp.google.com/i/client.dart/builders/dartium-win-inc-ninja-be/builds/3027/steps/dartium_core_checked_tests/logs/stdio

R=ricow@google.com

Review URL: https://codereview.chromium.org//294203006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36550 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-23 08:52:04 +00:00
leafp@google.com d1a1c16d9b Disable a few more polymer tests for now
BUG=
R=jacobr@google.com

Review URL: https://codereview.chromium.org//293053016

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36539 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-23 00:20:59 +00:00
leafp@google.com 321390db5c Only disable tests when compiler is none
Allow more polymer tests in dartium to fail

BUG=
R=vsm@google.com

Review URL: https://codereview.chromium.org//287053006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36445 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-21 20:04:56 +00:00
vsm@google.com 55a4e2d64e Restore leafp's status fixes
These all appear to fail non-deterministically.

TBR=leafp@google.com

Review URL: https://codereview.chromium.org//295913008

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36431 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-21 14:23:04 +00:00
vsm@google.com af4b53ad78 More status fixes for Dartium 35
Adding these back in as well.

TBR=leafp@google.com

Review URL: https://codereview.chromium.org//293013009

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36430 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-21 14:08:51 +00:00
vsm@google.com d9d64bcd03 Polymer status fixes for Dartium
These are all passing on at least one bot and failing (RuntimeError) on at least one bot.

TBR=leafp@google.com

Review URL: https://codereview.chromium.org//294123007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36429 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-21 13:56:26 +00:00
vsm@google.com f2d47ee0fa Fix status file ordering
Doh!

TBR=ricow@google.com

Review URL: https://codereview.chromium.org//299663012

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36423 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-21 11:51:32 +00:00
vsm@google.com 03d654080b Dartium status fixes for roll to 35/1916.
Leaf: this includes your earlier fixes. The polymer tests appear to pass, so I've taken those out. I've also marked tests that regressed as Fail instead of Pass, Fail as 35 has landed.

R=ricow@google.com

Review URL: https://codereview.chromium.org//291323002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36422 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-21 11:37:39 +00:00
nweiz@google.com 7774c6f38a Add a shelf_web_socket package.
R=kevmoo@google.com

Review URL: https://codereview.chromium.org//297593003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36394 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-20 22:17:08 +00:00
danrubel@google.com bbe2d1ba83 enable analysis_server_test
BUG=dartbug.com/18848
R=scheglov@google.com

Review URL: https://codereview.chromium.org//293033002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36364 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-20 16:51:42 +00:00
jmesserly@google.com 37399b00b6 [polymer] mark register_test failing on ie10
BUG= https://code.google.com/p/dart/issues/detail?id=18870

Review URL: https://codereview.chromium.org//286293005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36280 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-16 23:43:17 +00:00
scheglov@google.com af851cdcdc New analyzer snapshot (with CaughtException).
R=brianwilkerson@google.com
BUG=

Review URL: https://codereview.chromium.org//285423002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36256 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-16 01:43:54 +00:00
kevmoo@google.com 95f0e1a762 pkg/mock updating unittest dependency
BUG= http://dartbug.com/18735
R=sigmund@google.com

Review URL: https://codereview.chromium.org//282933002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36141 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-13 23:55:52 +00:00
sra@google.com ad99238813 Use originalGetTag on wrapped object
Upgrade dart_support to use dartNativeDispatchHooksTransformer.

R=sigmund@google.com

Review URL: https://codereview.chromium.org//282893002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36135 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-13 21:23:31 +00:00
sigmund@google.com 71328fc43e TEst to reproduce issue 18747
R=sra@google.com

Review URL: https://codereview.chromium.org//276573006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36117 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-13 19:22:19 +00:00
zra@google.com 03f2f289b4 Adds Math Min/Max to arm64.
Also fixes bugs and enables tests.

R=regis@google.com

Review URL: https://codereview.chromium.org//284843004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36116 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-13 18:10:16 +00:00
sigmund@google.com d1ca850fe0 Fix code generation in polymer: we avoided generating types above HtmlElement in
all but one place. Added support for that in smoke and polymer.
This should fix issue 18667.

BUG=https://code.google.com/p/dart/issues/detail?id=18667
R=jmesserly@google.com

Review URL: https://codereview.chromium.org//278413002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36053 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-12 19:23:33 +00:00
ajohnsen@google.com e0525e4636 Remove crash-marking of http_test on SIMMIPS.
I'm not able to reproduce this anymore.

BUG=
R=ricow@google.com

Review URL: https://codereview.chromium.org//277293002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@36020 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-12 09:44:09 +00:00
jmesserly@google.com 7d9733d5df mark angular_tests on analyzer as having warnings
another instance of https://code.google.com/p/dart/issues/detail?id=18733
we're testing angular against the wrong version of html5lib, so it complains about missing members

Review URL: https://codereview.chromium.org//273943002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35950 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-08 22:50:57 +00:00
kevmoo@google.com 34dc570388 pkg/mock: fixes for v0.11
R=nweiz@google.com, sigmund@google.com

Review URL: https://codereview.chromium.org//278613003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35949 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-08 22:43:43 +00:00
jmesserly@google.com edeef1c4c3 [html5lib] fix type annotation and pkg.status for angular_tests
angular_tests issue is http://dartbug.com/18733

Review URL: https://codereview.chromium.org//274913002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35945 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-08 22:06:44 +00:00
jmesserly@google.com 81e87f0b60 revert pkg.status change for 18667
apparently was not fixed ... it just behaves differently on local machine vs bots =(
BUG=

Review URL: https://codereview.chromium.org//279603002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35942 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-08 21:51:42 +00:00
jmesserly@google.com 06f8f2d16b [html5lib] implement querySelector/querySelectorAll
BUG= https://code.google.com/p/dart/issues/detail?id=18508

* tests from https://github.com/w3c/web-platform-tests/tree/master/selectors-api, kept as close to original as I could.

* src/query_selector.dart is most interesting file. It implements enough of selectors to pass the basic web platform tests. Ironically, it was the easiest part of this CL...

* many fixes to csslib. Almost all of the selector tests were skipped (https://github.com/dart-lang/csslib-test-suite/blob/master/suite/selectors3/selectors3_test.dart) and there was a lot of things broken: unicode, escaping, incorrectly treating ident-tokens as units, probably more that I am forgetting :). Fixed as much as I could without doing major surgery.

* a bunch of fixes to the htm5lib DOM to bring it closer in alignment with dom.spec.whatwg.org and dart:html. The driving force was to minimize the changes needed on the W3C tests.

Note: haven't updated things that depend on html5lib like Polymer yet.

R=sigmund@google.com

Review URL: https://codereview.chromium.org//268623002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35941 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-08 21:41:05 +00:00
ricow@google.com 3128531865 Status file updates to make the tree green.
Mark try/end_to_end_test as Fail, Timeout, updated issue 17935

Mark isolate/mandel_isolate_test Crash, Pass on simarm debug, filed issue 18670

Mark pkg/polymer/test/attr_mustache_test as CompileTimeError on dart2js on browsers (we skip this on command line vms already) - this happened after revision 35811 - filed issue 18667

Review URL: https://codereview.chromium.org//267373002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35841 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-07 06:27:52 +00:00
nweiz@google.com d584f59fc1 Mark HTTP and OAuth2 tests as failing on IE9.
R=rnystrom@google.com
BUG=18648

Review URL: https://codereview.chromium.org//263213009

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35822 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-06 19:56:06 +00:00
karlklose@google.com 122b08661a Mark tests as failing on IE9.
BUG= http://dartbug.com/18648
R=johnniwinther@google.com

Review URL: https://codereview.chromium.org//262173011

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35790 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-06 08:39:49 +00:00
nweiz@google.com 3d136514da Mark oauth2 as running outside of dart:io contexts.
R=rnystrom@google.com

Review URL: https://codereview.chromium.org//269053003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35763 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-05 20:25:13 +00:00
nweiz@google.com 97e95bb956 Rip out the last dart:io dependency from pkg/http.
It now loads dart:io via mirrors if it's available. This allows it to be
compatible with the browser, so a new library "package:http/browser_client.dart"
is added to support that.

The use of mirrors was tested to ensure that it doesn't add any additional
filesize to dart2js compilations over what would be used if "dart:io" support
didn't exist.

R=rnystrom@google.com

Review URL: https://codereview.chromium.org//261763002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35756 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-05 19:36:22 +00:00
ricow@google.com 342d4e79da Update status file entries for mobile safari simulator.
Only a few tests are failing that are not failing on the normal safari.

I have marked those with issue 18573

Review URL: https://codereview.chromium.org//268593004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35634 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-01 15:40:33 +00:00
ricow@google.com 83e7ed5fee Roll firefox jsshell deps to version 28
Remove suppression for issue with Uint8ClampedArray which is now fixed (I already updated the firefox bots so it is not there anymore either)

R=kasperl@google.com

Review URL: https://codereview.chromium.org//266663005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35620 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-01 08:51:57 +00:00
ricow@google.com 19104f7ae5 Remove suppression for pkg/typed_data/test/typed_buffers_test/none on ie11
This is passing

Review URL: https://codereview.chromium.org//260903004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35612 260f80e4-7a28-3924-810f-c04153c831b5
2014-05-01 05:35:37 +00:00
floitsch@google.com bcb3c3e8ba Don't hide interceptors in mirrors.
The special code for mirrors was brittle and was the reason for several bugs.

BUG= http://dartbug.com/18076
BUG= http://dartbug.com/15405
BUG= http://dartbug.com/14025
BUG= http://dartbug.com/13842
BUG= http://dartbug.com/16804
BUG= http://dartbug.com/15555
R=karlklose@google.com

Review URL: https://codereview.chromium.org//236313012

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35586 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-30 18:21:11 +00:00
karlklose@google.com cf0f1097e4 Mark stream_zip_test as flaky.
R=herhut@google.com
BUG= http://dartbug.com/18548

Review URL: https://codereview.chromium.org//261593003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35563 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-30 07:05:38 +00:00
ricow@google.com def72d3fd4 Update status after updating firefox to v28 on linux
Review URL: https://codereview.chromium.org//260303002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35514 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-29 06:36:50 +00:00
vsm@google.com 64481d6783 Undo skip, tests now pass
BUG=http://dartbug.com/18447
R=leafp@google.com

Review URL: https://codereview.chromium.org//259923002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35454 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-25 23:09:59 +00:00
vsm@google.com 26068ad107 Move conditional skip after unconditional skips
TBR=iposva@google.com,leafp@google.com

Review URL: https://codereview.chromium.org//252583006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35449 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-25 21:42:07 +00:00
iposva@google.com 99e84132c6 - Skip pkg/polymer tests.
Review URL: https://codereview.chromium.org//251683004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35442 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-25 19:47:16 +00:00
paulberry@google.com 1c873d4a38 Use @MirrorsUsed to prevent analysis server tests from slowing down in dart2js.
R=scheglov@google.com

Review URL: https://codereview.chromium.org//254533004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35396 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-24 20:11:26 +00:00
paulberry@google.com 0b63b64bc5 Mark analysis server tests as slow under dart2js (TBR).
Because of the use of mocking, analysis server tests are very slow
with dart2js.  Go ahead and let them timeout.

Review URL: https://codereview.chromium.org//251563002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35385 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-24 17:27:09 +00:00
kasperl@google.com a59818ea8b Revert "Update all Angular libs (run update_all.sh)."
This reverts r35366.

R=ricow@google.com
BUG=

Review URL: https://codereview.chromium.org//256553002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35367 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-24 12:29:05 +00:00
kasperl@google.com c9013a859f Update all Angular libs (run update_all.sh).
R=ricow@google.com, blois@google.com
BUG=

Review URL: https://codereview.chromium.org//257423008

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35366 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-24 11:34:18 +00:00
ajohnsen@google.com 13e6aefffa Mark polymer/test/build/script_compactor_test as slow.
BUG=
R=ricow@google.com

Review URL: https://codereview.chromium.org//258603002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35357 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-24 08:25:13 +00:00
nweiz@google.com 1c9e292b2c Re-apply "Add a non-dart:io WebSocket implementation to http_parser."
Re-apply "Fix an analyzer error in http_parser's WebSocket implementation."

This also marks the web socket test as failing on dart2js nad the browser.

R=kevmoo@google.com

Review URL: https://codereview.chromium.org//250073002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35330 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-23 20:53:17 +00:00
kevmoo@google.com 8ecdcb71a7 pkg/docgen: skip tests on arm and mips
BUG= https://code.google.com/p/dart/issues/detail?id=17003
R=alanknight@google.com

Review URL: https://codereview.chromium.org//247313005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35291 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-23 00:55:31 +00:00
kevmoo@google.com 862e9b046e pkg/docgen: fix type warnings
BUG= https://code.google.com/p/dart/issues/detail?id=18232
R=alanknight@google.com

Review URL: https://codereview.chromium.org//247973004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35286 260f80e4-7a28-3924-810f-c04153c831b5
2014-04-22 22:52:30 +00:00