Commit graph

523 commits

Author SHA1 Message Date
sigmund@google.com 5670ea13fe Mark ie9 test as flaky again.
Review URL: https://codereview.chromium.org//35533004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29041 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-22 22:09:05 +00:00
sigmund@google.com 0ef8267538 Mark test as passing in ie9 - woo hoo!
Review URL: https://codereview.chromium.org//35013004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29038 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-22 21:16:00 +00:00
sigmund@google.com e1e9df10c6 Remove flaky marks on polymer tests for windows + ff/chrome
R=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29037 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-22 21:08:16 +00:00
sigmund@google.com 2b092e883f Fixes the deploy step used by the bots in windows
R=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29027 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-22 19:32:01 +00:00
jmesserly@google.com ccb7d5304f fix issue 14300 -- polymer tests under CSP
R=ricow@google.com, sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29020 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-22 18:29:46 +00:00
blois@google.com 3ce5b53d2f Fixing status of register test on IE
Also addressing review feedback from original CL

BUG=
R=sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29009 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-22 17:06:53 +00:00
blois@google.com bcf24e3c00 Fixing polymer element registration when extending tag extensions
BUG=14127
R=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29006 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-22 16:20:04 +00:00
sigmund@google.com 357af01f40 Fix prop_attr_reflection_test in drt/dartium (fixes issue 14295)
R=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29005 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-22 16:18:14 +00:00
fschneider@google.com 593abec44c Fix bug with load elimination in checked mode.
Definitions that are redefined through AssertAssignable must be
unwrapped to number loads/stores correctly for them.

Fix test expectations for tests that are passing now that the
corresponding co19 test was changed.

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

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29001 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-22 16:03:48 +00:00
jmesserly@google.com 077dd5c0b5 mark polymer csp tests as failing
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28988 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-22 07:56:39 +00:00
sigmund@google.com aabf7503ad Mark fail/timeout in dartium test while we investigate.
Review URL: https://codereview.chromium.org//28613005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28978 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-22 01:10:28 +00:00
sigmund@google.com 2ec8210e03 Mark polymer tests as failing in windows.
Review URL: https://codereview.chromium.org//34093002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28973 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-22 00:21:00 +00:00
jmesserly@google.com 821e6fec2a Several fixes here to fix bugs and get our tests into a reliable state:
* customElementsReady future. We don't fire Polymer.onReady until custom elements are ready too

* deploy without dart.js by default. This is the expected deployment mode for real apps. Also make sure we test this on DRT and compiler==js, so Pete can change Dartium without causing build breaks :)

* stop using "package:observe" test "performMicrotaskCheckpoint" hack in Polymer. This was too blunt; it affected timing of all async operations. Instead we only trigger Observable.dirtyCheck. It's using the latest Zone API as well.

* mixin ChangeNotifier explicitly. This is mainly to fix a quirk of our test environment (test server loads "packages/polymer" in untransformed mode, causing it to pick up Observable instead of ChangeNotifier).

* fix change watchers to blacklist "attributeChanged" :)

* fix serializeValue to only use the runtime value

* fix deserializeValue to get the right Type for dart:core types

* cleanup prop_attr_reflection_test to use mutation observer

R=blois@google.com, sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28956 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-21 21:49:51 +00:00
jmesserly@google.com b85a54ec6d fix Polymer to work with latest JS interop
both places we used dart:js were broken for different reasons :). On the bright side, a huge hacky workaround is gone!

R=jacobr@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28915 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-21 01:38:52 +00:00
jacobr@google.com 8ada3f245e TBR: fix failing polymer test
Marked todomvc as failing. TBR

BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28906 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-19 05:30:12 +00:00
lry@google.com 256993d635 mark barback test "too_many_open_files_test" as flaky
minor cleanups on previous patch

R=ajohnsen@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28853 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-18 11:41:04 +00:00
kustermann@google.com f35b9c485f Mark pkg/polymer/test/attr_mustache_test as flaky on dart2js-ff
R=ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28849 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-18 09:24:04 +00:00
scheglov@google.com 581b368515 New analyzer_experimental snapshot.
R=brianwilkerson@google.com
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28831 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-17 22:14:19 +00:00
kustermann@google.com fc8082b75e Mark more polymer tests + todomvc (which usees polymer) as flaky
Review URL: https://codereview.chromium.org//27699002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28798 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-17 12:37:31 +00:00
floitsch@google.com 5d40cc5729 Mark instance_attrs_test as flaky.
Review URL: https://codereview.chromium.org//27688002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28796 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-17 10:44:20 +00:00
sigmund@google.com 728114e4c6 Update status on browser-only tests.
Review URL: https://codereview.chromium.org//26967009

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28779 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-17 04:27:45 +00:00
zra@google.com 3f5cacdc87 Updates status file for slow test on simarm, simmips
Review URL: https://codereview.chromium.org//26174004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28727 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-16 15:20:21 +00:00
kustermann@google.com a43e7cf2c8 Mark pkg/barback/test/too_many_open_files_test as slow
TBR=ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28724 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-16 13:41:34 +00:00
jmesserly@google.com ceb15d891c fix PolymerElement.bind to call reflectPropertyToAttribute w/ prop name
This is the fix for issue 14060
Polymer.js fix is at: https://github.com/Polymer/polymer/pull/319

R=sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28688 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-15 22:41:19 +00:00
floitsch@google.com 43bbab4e09 Mark error_test as timeout.
Review URL: https://codereview.chromium.org//27103002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28570 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-12 16:49:40 +00:00
floitsch@google.com fcf5c20aeb Mark prop_attr_reflection_test as failing.
Review URL: https://codereview.chromium.org//27090003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28566 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-12 13:53:20 +00:00
blois@google.com 1f788e54c9 Marking Polymer's prop_attr_reflection_test as fail
Change in symbol name is causing test to fail, opened bug.

TBR
BUG=
R=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28560 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-12 00:22:34 +00:00
alanknight@google.com 8cb396fafb Mark the intl file-reading tests slow on debug mips
R=zra@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28529 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-11 17:10:20 +00:00
sigmund@google.com 5df1c0d7f9 Fix bug in polymer expressions where input-value bindings are incorrectly
updated twice, losing the cursor position.

BUG=
R=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28480 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-10 21:29:07 +00:00
zra@google.com a644c01748 Updates status file for flaky test on simmips.
Review URL: https://codereview.chromium.org//26855003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28456 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-10 15:04:31 +00:00
scheglov@google.com afb3cc7f01 Issue 13918. final fields induce setters that are illegal to call
https://code.google.com/p/dart/issues/detail?id=13918

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

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28415 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-09 20:30:42 +00:00
vsm@google.com 334fd6bf07 Mark spawnFunction tests as Fail on Dartium
See corresponding Dartium CL:
https://chromiumcodereview.appspot.com/26397003/

This disables spawnFunction on DOM enabled isolate (i.e., where
dart:html is available).  spawnFunction should continue to work on
non-DOM enabled isolated.  spawnUri should be unaffected.

R=asiva@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28406 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-09 16:25:28 +00:00
vsm@google.com 5fbbb5c53b Revert "Fix status files"
This tests all pull in dart:io but do not use them.

This CL temporarily made them work:
- https://chromiumcodereview.appspot.com/26490003/

This CL restores the previous (and I think correct) behavior:
- https://chromiumcodereview.appspot.com/26540002/

BUG=
R=jacobr@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28374 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-08 19:25:31 +00:00
vsm@google.com 879d006d47 Fix status files
Note: about 25 tests started passing on Dartium with:
https://chromiumcodereview.appspot.com/26490003/

Need to understand why & if this is legit.

TBR=jacobr@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28368 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-08 17:33:58 +00:00
jmesserly@google.com 64b7cb0756 mark test failing for issue 13890
Review URL: https://codereview.chromium.org//26453002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28359 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-08 07:21:45 +00:00
jmesserly@google.com 01230279a3 add enumerate to the default filter set
R=justinfagnani@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28358 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-08 06:14:31 +00:00
jmesserly@google.com 210d06e501 fix status for a test that is passing on IE
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28351 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-08 01:53:45 +00:00
jmesserly@google.com 034d14cfc0 fix ShadowDOM on browsers with non-native template
also update shadow_dom to latest

R=sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28343 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-08 00:26:06 +00:00
jmesserly@google.com 177102c56f skip polymer instance_attrs_test on vm
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28342 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-08 00:21:05 +00:00
jmesserly@google.com 9ccae5e0d9 fix polymer copy-instance-attributes feature
fixes https://code.google.com/p/dart/issues/detail?id=13883

R=sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28339 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-08 00:05:56 +00:00
zra@google.com 582a3d1337 Updates status file for flakey test on DebugSIMMIPS.
R=regis@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28320 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-07 18:45:21 +00:00
ricow@google.com 95b0505181 Revert revsion 28304
The flaky test has already been fixed.

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28308 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-07 12:56:24 +00:00
ricow@google.com 101b5a81c5 Mark pkg/sequence_zip/test/stream_test as flaky on IE9
Filed issue 13865 to track this

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28304 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-07 11:30:45 +00:00
lrn@google.com aeac488783 Make sequence-zip test not be timing dependent.
Review URL: https://codereview.chromium.org//25982004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28300 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-07 07:00:20 +00:00
kustermann@google.com 14dce1057e Second round of status file updates after enabling none-dartium tests on dartium-inc builders
TBR=ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28265 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-04 14:32:38 +00:00
jmesserly@google.com 55a058e6c0 fix status of Polymer tests, some are passing on safari
Review URL: https://codereview.chromium.org//25653002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28138 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-02 00:36:01 +00:00
jmesserly@google.com cf3dcfba4c Port Polymer.js Core, the github.com/polymer/polymer code.
Ports all features except where JS interop is blocking us (declaration/path.js and instance/style.js). In particular, this has:
  //   src/declaration/attributes.js
  //   src/declaration/events.js
  //   src/declaration/polymer-element.js
  //   src/declaration/properties.js
  //   src/declaration/prototype.js
  //   src/declaration/styles.js
  //   src/instance/attributes.js
  //   src/instance/base.js
  //   src/instance/events.js
  //   src/instance/mdv.js
  //   src/instance/properties.js
  //   src/instance/utils.js
  //   src/lib/deserialize.js
  //   src/lib/job.js
  //   src/lib/dom.js -- not needed in Dart
  //   src/lib/lang.js -- not needed in Dart
  //   src/lib/super.js -- not needed in Dart

There's also a big architectural change: polymer-element data is now stored in the PolymerDeclaration class, which is separate from PolymerElement. This allows us to avoid duplicate work on every constructor, and should significantly speed up instance creation.

All code is from the same revision:
4dc481c115

The remaining unported files are for relatively minor features. "declaration/path.js" is for asset URL resolution, and we might have a Pub-based solution instead. "instance/style.js" has an opt-in, advanced style polyfill. It needs "ShadowCSS.shimPolyfillDirectives", and probably isn't too hard to make work in a follow up change.

Other changes:
* attributeChanged lifecycle method is implemented.
* ObservableAnnotation is public so Polymer's @published can subclass it
* bindProperty renamed to onPropertyChange to avoid conflict with Polymer member of the same name.
* polymer/lib/boot.js preload's polymer-element and link[rel=stylesheet]

R=blois@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28134 260f80e4-7a28-3924-810f-c04153c831b5
2013-10-01 23:45:37 +00:00
zra@google.com 1a9d6cfb1f Adds the BreakpointRuntime stub to ARM and MIPS.
Also:
- Makes some stub calls patachable.
- Updates pkg.status for an unrelated failing test.

R=regis@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28066 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-30 20:17:48 +00:00
regis@google.com 3d1b108dc5 Third try: "Slow" does not imply "Pass".
Review URL: https://codereview.chromium.org//25112003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28022 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-27 19:41:24 +00:00
regis@google.com 4dc34bb9f2 Mark recently enabled test as slow on simmips as well.
Review URL: https://codereview.chromium.org//25043003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28020 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-27 17:19:24 +00:00
regis@google.com d7d6f9c6ba Mark recently enabled test as slow on simarm.
Review URL: https://codereview.chromium.org//25041004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28019 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-27 17:13:19 +00:00
fschneider@google.com 96bcfa4162 Skip pkg/ test on ARM hardware until the underlying issue is fixed.
BUG=13624

TBR=ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28002 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-27 10:54:53 +00:00
fschneider@google.com 4939ad9d39 Enable some skipped pkg/ tests on ARM and MIPS.
They are passing on the simulator.

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27996 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-27 09:06:46 +00:00
vsm@google.com e0e1243e67 Reenable mutation_observer_test
Fix is in: https://chromiumcodereview.appspot.com/24492005/

BUG=13606
R=asiva@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27963 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-26 16:54:35 +00:00
kustermann@google.com 55e9dc75b4 test.py: Parse unittest-suite-{wait-for-done,success} messages in output of d8/jsshell/vm
R=ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27953 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-26 14:06:01 +00:00
johnniwinther@google.com f83de85c7e Handle hiding dart:core imports specially.
BUG=http://dartbug.com/13542
R=ngeoffray@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27938 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-26 10:59:55 +00:00
ricow@google.com 2b873ea6f1 Mark pkg/mutation_observer/test/mutation_observer_test as flaky
This is crashing in an assertion

Filed issue 13606 to track this.

R=kasperl@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27933 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-26 07:21:27 +00:00
ricow@google.com 4eba8e5c88 Remove flaky markers for v8 bug - this has already been fixed by a v8 roll
R=kustermann@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27931 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-26 06:47:20 +00:00
fschneider@google.com 9a87eb0944 Fix x64 assembler in roundsd and pxor.
BUG=https://code.google.com/p/dart/issues/detail?id=13543
R=johnmccutchan@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27882 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-25 15:00:53 +00:00
kustermann@google.com dfbf264f40 Automatically converted general Fail status file markers to one of the more specific markers
R=johnniwinther@google.com, ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27876 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-25 12:47:03 +00:00
kustermann@google.com 9e1ba8381e Status file update after adding new vm-linux-release-optcounter-threshold builder
TBR=ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27815 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-24 12:19:10 +00:00
ngeoffray@google.com 0685ecd38f Update status file for crashing test.
Review URL: https://codereview.chromium.org//24349004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27814 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-24 12:11:30 +00:00
whesse@google.com d609dcbe02 Mark scheduled_server_test as flaky on all plaforms
BUG=dartbug.com/13524

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27795 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-24 02:04:33 +00:00
whesse@google.com 41f398eefb Don't run scheduled_server_test on the browser.
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27794 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-24 01:42:43 +00:00
asiva@google.com 74e69d051b Skip scheduled_test on dartium as it expects dart:io
Review URL: https://codereview.chromium.org//24281011

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27792 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-24 00:58:41 +00:00
whesse@google.com e7b1c5f7d4 Fix failures in pkg/scheduled_test scheduled_server_test.
The package and test were throwing strings, which do not have attached stack traces because they are primitives.

BUG=dartbug.com/9582
R=nweiz@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27790 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-24 00:00:37 +00:00
blois@google.com 0ed3cb19e4 Updating Shadow DOM and including some fixes to enable it to work with CustomElements.
BUG=
R=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27785 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-23 23:04:37 +00:00
ahe@google.com 05a9a7834e Emit CSP code in separate file.
R=kasperl@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27745 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-23 09:06:14 +00:00
asiva@google.com c7839584bb Update status file to remove flaky status under dartium for test
pkg/custom_element/test/custom_element_test

R=vsm@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27676 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-19 20:57:28 +00:00
justinfagnani@google.com 1e84569c04 Fix polymer_expressions syntax test on Safari and IE
BUG=
R=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27630 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-18 17:25:17 +00:00
kasperl@google.com f77e810f81 First attempt at fixing the status file for chrome-on-android.
R=kustermann@google.com
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27601 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-18 09:56:33 +00:00
ricow@google.com 329e56d993 Suppress failure of pkg/polymer_expressions/test/syntax_test fails on safari and IE
Filed issue 13361

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27544 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-17 06:24:42 +00:00
sigmund@google.com ba97c385d4 Rearranges the polymer package now that the old compiler is gone.
R=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27462 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-13 00:18:09 +00:00
jmesserly@google.com de05038d87 fix polymer/test/events_test status on ff+windows
Review URL: https://codereview.chromium.org//24126004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27460 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-12 23:37:33 +00:00
jmesserly@google.com dec9af04ee fix shadowdom polyfill
I'm not sure when it broke, but it was not rendering TodoMVC at startup (actually -- it was rendering, then clearing). In any case, the bug goes away with an updated ShadowDOM. We're now completely unforked

I also fixed minify mode. It no longer depends on the name 'GeneratedWrapper', instead it detects the precise problematic case and deals with it.

R=sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27458 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-12 23:04:02 +00:00
sigmund@google.com e9dbf02af1 Latest attempt to polymer-build scripts in fix windows
R=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27457 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-12 22:42:47 +00:00
sigmund@google.com ddd60484a8 Fix status while I fix the real issue in bots.
R=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27448 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-12 20:51:01 +00:00
sigmund@google.com cc194ddbd8 Update status files marking some polymer tests as timeout/flake
R=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27412 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-11 22:50:40 +00:00
jmesserly@google.com 68a3655f3e add timeout as an option for polymer/example IE tests
Review URL: https://codereview.chromium.org//24097004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27361 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-10 23:03:10 +00:00
jmesserly@google.com 58700e061f fix pkg.status file for polymer/example/component/news test
Review URL: https://codereview.chromium.org//23903039

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27360 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-10 22:33:52 +00:00
jmesserly@google.com 00c31d8951 mark polymer test failing on safari, ie
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27358 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-10 22:08:58 +00:00
jmesserly@google.com 05705dad2f fix polymer tests -- replace run.sh and run tests using bots
BUG=
R=sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27353 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-10 21:21:55 +00:00
ricow@google.com d463e8ac03 Mark pkg/crypto/test/hmac_sha256_test as flaky
We already have issue 12502 to track this.

R=kustermann@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27335 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-10 13:00:12 +00:00
sigmund@google.com b5e920e0bf Reenable polymer_expressions syntax_test.
R=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27088 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-04 01:59:07 +00:00
ricow@google.com 713a068bc2 Remove suppression for issue 12429
This is fixed by the v8 roll in revision 27038

R=kustermann@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27042 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-03 11:16:38 +00:00
scheglov@google.com 2407a0bc51 Restore pkg.status item.
TBR

R=ahe@google.com
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27021 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-02 19:41:46 +00:00
scheglov@google.com 5f27a4f4ad java2dart improvements and new analyzer_experimental snapshot.
1. All enums extend Enum class.
2. Remove more unneeded parentheses.
3. Remove type arugments for types with all wildcards.

R=brianwilkerson@google.com
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27020 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-02 19:01:22 +00:00
ahe@google.com 1ec950324d custom_element_test is flaky
Review URL: https://codereview.chromium.org//23550004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26983 260f80e4-7a28-3924-810f-c04153c831b5
2013-09-01 06:26:53 +00:00
ahe@google.com f497cd1f59 Update status file for crashing test.
Review URL: https://codereview.chromium.org//23537007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26980 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-31 13:46:22 +00:00
ahe@google.com a5f62a3902 TestCase times out after 20 seconds.
R=gram@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26974 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-31 09:24:52 +00:00
sigmund@google.com b7337fe3b6 Mark html5lib browser_test as skip (it's now being detected as a test for
test.dart, but it's not supported).

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26964 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-31 00:35:47 +00:00
blois@google.com e978a60f39 Skipping polymer_expressions/test/syntax_test
TBR
BUG=https://code.google.com/p/dart/issues/detail?id=12954

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26961 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-31 00:13:32 +00:00
blois@google.com 761b1a4180 Fixing status of analyzer_experimental/test/options_test
TBR
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26959 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-30 23:15:29 +00:00
whesse@google.com b386f70f4c Mark a pub test flaky on macos
BUG=http://dartbug.com/12837
R=sgjesse@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26913 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-30 13:43:48 +00:00
sigmund@google.com 8e097beaac Mark sequence_zip test as flaky.
Review URL: https://codereview.chromium.org//23745002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26838 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-29 02:37:19 +00:00
alanknight@google.com 5a965b5a45 Resume testing message extraction on Windows after dart:io fix
R=efortuna@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26744 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-27 20:50:55 +00:00
ngeoffray@google.com cf82ac340b Update csslib expectations.
Review URL: https://codereview.chromium.org//23570002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26700 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-27 10:02:40 +00:00
lrn@google.com 6e34d019b4 Change test expectation on pkg/csslib/var_test for dart2js
Review URL: https://codereview.chromium.org//23513005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26699 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-27 09:49:28 +00:00
nweiz@google.com 22f45f401e Don't run parse_compilation_unit_test on browser/dart2js bots.
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26676 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-26 23:20:26 +00:00
rnystrom@google.com b35a36dbe5 Normalize incoming AssetID paths.
BUG=https://code.google.com/p/dart/issues/detail?id=12650
R=nweiz@google.com, sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26558 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-22 21:36:36 +00:00
floitsch@google.com 1640181cc1 Mark hmac test as flaky.
R=kustermann@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26524 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-22 14:24:31 +00:00
sigmund@google.com 44d16cd3fe Mark windows tests as failing (this time for real)
TBR=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26501 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-22 01:37:02 +00:00
sigmund@google.com aa5b9fc9bc Mark windows test as failing until we fix the issue
TBR=jmesserly@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26499 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-22 01:15:32 +00:00
jacobr@google.com 8b84d8ee76 Changes required for Dartium roll
Merge checkpoint. Everything compiles.

BUG=

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

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26455 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-21 18:41:58 +00:00
kustermann@google.com bc051d0a91 Remove entries in status refering to non-existent files
R=ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26438 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-21 16:40:40 +00:00
jmesserly@google.com 068dec6712 move polymer.dart into dart svn
R=sigmund@google.com

Review URL: https://chromiumcodereview.appspot.com//23224003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26404 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-20 22:48:50 +00:00
vsm@google.com f1f66bfcc4 Update status file
This should get the dart2js/drt bots back to green.

R=sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26398 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-20 21:58:10 +00:00
jacobr@google.com 339b0bdd70 Attempt to land Dartium roll a second time.
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26363 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-20 15:54:49 +00:00
jacobr@google.com c6ebe4e4e0 rollback problem blink merge cl
Review URL: https://codereview.chromium.org//23163010

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26339 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-20 06:22:24 +00:00
jacobr@google.com 785c8416bc Changes required for Dartium roll
Merge checkpoint. Everything compiles.

BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26335 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-20 01:50:17 +00:00
jacobr@google.com be39ab0527 Changes required for Dartium roll
BUG=
R=vsm@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26334 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-20 01:15:11 +00:00
ricow@google.com 649079a711 Remove flaky marker for csslib/test/declaration_test
This has been fixed in V8 and we rolled in a new version

R=kustermann@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26313 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-19 13:22:38 +00:00
ricow@google.com b6acd066fd Mark pkg/crypto/test/sha256_test as flaky on safari.
See http://dartbug.com/12502

R=benwells@chromium.org

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26261 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-16 09:07:26 +00:00
ricow@google.com 6f66772760 Mark pkg/csslib/test/declaration_test as flaky crashing.
Filed v8 bug 2846.

R=kustermann@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26256 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-16 07:37:45 +00:00
jmesserly@google.com f300344407 move fancy_syntax into Dart SVN
Changes after moving:

deleted: AUTHORS, LICENSE, PATENTS, codereview.settings.
these are redundant with the Dart repository files.

pubspec.yaml: remove versions, changed homepage
syntax_test.dart: add the HTML via Dart, so it can run on browser bots
syntax_test.html: removed the HTML that is now added by syntax_test.dart
pkg/pkg.status: skip the in-browser syntax_test on standalone VM

R=justinfagnani@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26237 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-15 23:04:19 +00:00
ricow@google.com d1c11ce125 Mark pkg/crypto/test/base64_test as timing out on IE in checked mode
Filed issue 12486

R=kustermann@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26195 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-15 15:58:58 +00:00
jmesserly@google.com de7b363216 package:csslib -- update status file for issue 12469
Review URL: https://codereview.chromium.org//23020006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26167 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-14 22:47:06 +00:00
jmesserly@google.com 6652dea7d3 mark csslib+drt+dart2js checked mode flaky
Review URL: https://codereview.chromium.org//23223002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26166 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-14 22:40:42 +00:00
jmesserly@google.com 0002a5a1a4 workaround random dart2js crash in csslib tests
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26163 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-14 22:17:18 +00:00
jmesserly@google.com 29397a566d html5lib -- workaround dart2js checked issues
Review URL: https://codereview.chromium.org//23221002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26161 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-14 22:09:44 +00:00
jmesserly@google.com 9e5b240923 move csslib into dart svn
deleted files that duplicate those in the Dart repository (LICENSE, pubspec.yaml, codereview.settings, .gitignore)

Otherwise, just changed pkg.status and pubspec

R=terry@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26155 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-14 21:11:30 +00:00
jmesserly@google.com d1f780df0b move html5lib code into dart svn repo
also gets the tests running

Changes to scripts:
* pkg/pkg.gyp: add 'third_party' to list of folders to search
* tools/publish_pkg.py: update copyright year
* tools/publish_all_pkgs.py: also include pkg/third_party

Changes to html5lib:
* pubspec.yaml -- removed versions
* README.md -- removed some historical notes
* added html5lib.status
* test/browser -- rename browser_tests to browser_test so test framework finds it
* test/parser_test.dart, test/parser_feature_test.dart -- moved dart:io test into parser_test so parser_feature_test can work in browser
* test/support.dart -- now finds the data folder relative to entry point script
* test/support.dart -- rename "pathos" import to "path"

Not changed:
* ./test/run.sh still works for testing, in addition to ./tools/test.dart

R=dgrove@google.com, ricow@google.com, sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26152 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-14 20:59:46 +00:00
ricow@google.com 53b6219630 Mark unmodifiable_collection/test/unmodifiable_collection_test as flaky on dart2js/d8
This is flaky failing due to what looks like a bug in v8 opt/deopt

See http://dartbug.com/12429

R=kustermann@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26116 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-14 12:56:56 +00:00
alanknight@google.com 9f565af534 Workaround for bug 11834 with Chrome XHR
R=efortuna@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26028 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-12 20:33:04 +00:00
ahe@google.com a2f28059eb Mark pkg/stack_trace/test/trace_test as failing on Safari.
Review URL: https://codereview.chromium.org//22866003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26009 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-12 16:09:12 +00:00
kustermann@google.com e1d4069eab Revert "Status file updates after changing testing scripts to use a dependency graph"
BUG=http://dartbug.com/12239
R=ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25998 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-12 11:44:04 +00:00
sigmund@google.com 1df9a489d2 Make observable transform a barback transform.
R=jmesserly@google.com, nweiz@google.com, rnystrom@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25985 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-09 22:29:38 +00:00
vsm@google.com bdc22a1325 Reenable custom_element_test
This one is now passing with yesterday's fixes.

R=sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25983 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-09 22:06:50 +00:00
ricow@google.com 4d03dda01a Mark analyzer_experimental/test/generated/ast_test as failing on dart2js
Filed issue 12341

R=kustermann@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25960 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-09 08:48:51 +00:00
scheglov@google.com 0039dfca51 Remove dart:io dependency from scanner/ast/parser tests.
R=brianwilkerson@google.com
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25935 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-08 17:46:50 +00:00
kustermann@google.com 27ab3ec418 Staus file update: analyzer_experimental/test/ast_test seems to be passing
R=ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25917 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-08 08:19:44 +00:00
scheglov@google.com 25c4b2e625 Skip more analyzer_experimental tests for browser.
TBR

R=ricow@google.com
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25905 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-07 22:06:32 +00:00
scheglov@google.com c6fad25d50 Fix pub and dart2js browser tests.
R=rnystrom@google.com
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25904 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-07 21:43:16 +00:00
kustermann@google.com b497bd0a4b Status file update for tests failing on dart2js-drt after chrome roll
R=ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25874 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-07 14:00:56 +00:00
vsm@google.com 7268cbd7a2 Update expectations
These appear to break on 32-bit OSes...

TBR=asiva@google.com,sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25848 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-07 00:15:00 +00:00
alanknight@google.com 12ee5f7c61 Improvements to warnings on message extraction.
Add warning for message names that don't match the function name, and
a warnings-are-errors command-line option.

R=efortuna@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25829 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-06 20:01:13 +00:00
kustermann@google.com 8324943b7d Status file updates after changing testing scripts to use a dependency graph
TBR=ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25768 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-05 15:30:07 +00:00
fschneider@google.com 39b5f02124 Update status file for flaky test. The failure is not reproducible anymore.
BUG=https://code.google.com/p/dart/issues/detail?id=12177
R=ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25766 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-05 13:38:44 +00:00
rnystrom@google.com b44ec0e706 Re-implement directory polling.
BUG=https://code.google.com/p/dart/issues/detail?id=12107
R=nweiz@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25746 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-02 22:01:39 +00:00
kustermann@google.com cb18d8ba87 Removed compiler/ directory from repository
R=ricow@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25728 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-02 08:31:15 +00:00
fschneider@google.com 8c89870852 Mark a Dartium test as flaky until the corresponding issue is resolved.
BUG=dart:12177

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25710 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-01 15:55:36 +00:00
gram@google.com 3f0e5d2034 TBR: Disable mirror matcher test for dart2js/csp.
See https://code.google.com/p/dart/issues/detail?id=12151

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25678 260f80e4-7a28-3924-810f-c04153c831b5
2013-07-31 18:58:58 +00:00
jmesserly@google.com e01298dc8c fix analysis error in custom_element
for some reason, dart2js treats this as a warning, dartanalyzer as error, and VM as so serious it won't load the app.

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25673 260f80e4-7a28-3924-810f-c04153c831b5
2013-07-31 17:31:19 +00:00
gram@google.com afe20804eb Re-enable unittest tests disabled due to issues 10935 and 11473.
Because we have split the unittest tests out into individual files, I want 
these tests to be run again with the aim of either understanding and fixing
these issues, or at least reducing the number of tests marked as flakes.

R=sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25672 260f80e4-7a28-3924-810f-c04153c831b5
2013-07-31 17:18:38 +00:00
gram@google.com 3f44e04163 Split unittest tests into separate test files.
For now we replicate the status for all the tests in some cases (e.g.
FireFox flakiness), but after this is committed we can re-enable these 
tests to try to isolate flaky test cases more narrowly.

R=sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25670 260f80e4-7a28-3924-810f-c04153c831b5
2013-07-31 17:03:07 +00:00
ricow@google.com 3f3ee83b09 Fix = to == in status file
Review URL: https://codereview.chromium.org//21114003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25660 260f80e4-7a28-3924-810f-c04153c831b5
2013-07-31 07:26:12 +00:00
ricow@google.com 039ab166b4 Mark pkg/custom_element/test/custom_element_test as failing on dartium and on the analyzer.
Filed issue 12142

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25659 260f80e4-7a28-3924-810f-c04153c831b5
2013-07-31 07:21:40 +00:00
jmesserly@google.com 250852e80b [pkg:mutation_observer] fix 12132, ie9 support
R=sigmund@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25650 260f80e4-7a28-3924-810f-c04153c831b5
2013-07-30 22:49:01 +00:00
jmesserly@google.com 5e389b1b05 mark mutation_observer tests as failing on IE9
filed bug https://code.google.com/p/dart/issues/detail?id=12132

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25645 260f80e4-7a28-3924-810f-c04153c831b5
2013-07-30 21:48:41 +00:00
jmesserly@google.com 7c3ca56e0a skip test that imports dart:html on VM bots
BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25643 260f80e4-7a28-3924-810f-c04153c831b5
2013-07-30 21:38:13 +00:00