From faeb31061fcf60c952cc551902739c7d864cb0cd Mon Sep 17 00:00:00 2001 From: Sigmund Cherem Date: Thu, 9 Oct 2014 13:05:00 -0700 Subject: [PATCH] Add status file for html5lib Review URL: https://codereview.chromium.org//640393002 --- .gitignore | 17 +++++++++++++++++ .status | 28 ++++++++++++++++++++++++++++ codereview.settings | 3 +++ 3 files changed, 48 insertions(+) create mode 100644 .gitignore create mode 100644 .status create mode 100644 codereview.settings diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000..e97917062e598 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# Don’t commit the following directories created by pub. +.pub +build/ +packages + +# Or the files created by dart2js. +*.dart.js +*.dart.precompiled.js +*.js_ +*.js.deps +*.js.map +*.sw? +.idea/ +.pub/ + +# Include when developing application packages. +pubspec.lock diff --git a/.status b/.status new file mode 100644 index 0000000000000..3bfc3528b2340 --- /dev/null +++ b/.status @@ -0,0 +1,28 @@ +# Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file +# for details. All rights reserved. Use of this source code is governed by a +# BSD-style license that can be found in the LICENSE file. + +# Don't run any test-like files that show up in packages directories. It +# shouldn't be necessary to run "pub install" in these packages, but if you do +# it shouldn't break the tests. +*/packages/*/*: Skip +*/*/packages/*/*: Skip +*/*/*/packages/*/*: Skip +*/*/*/*/packages/*/*: Skip +*/*/*/*/*/packages/*/*: Skip + +build/*: Skip # nothing requires pub-build + +[ $runtime == vm && $mode == debug] +test/tokenizer_test: Skip # Times out + +[ $runtime == vm && ( $arch == simarm || $arch == simmips ) ] +test/tokenizer_test: Pass, Slow + +[ $browser ] +test/parser_test: Skip +test/tokenizer_test: Skip +test/selectors/*: Skip + +[ $runtime == vm ] +test/browser/browser_test: Skip diff --git a/codereview.settings b/codereview.settings new file mode 100644 index 0000000000000..39ffa4fa18c7c --- /dev/null +++ b/codereview.settings @@ -0,0 +1,3 @@ +CODE_REVIEW_SERVER: http://codereview.chromium.org/ +VIEW_VC: https://github.com/dart-lang/core-elements/commit/ +CC_LIST: reviews@dartlang.org