finish test cleanup
diff --git a/test/run.sh b/test/run.sh
deleted file mode 100755
index c060bd7..0000000
--- a/test/run.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-# Copyright (c) 2012, the Dart project authors.  Please see the LICENSE file
-# for details. All rights reserved. Use of this source code is governed by a
-# MIT-style license that can be found in the LICENSE file.
-
-# bail on error
-set -e
-
-# TODO(sigmund): replace with a real test runner
-DIR=$( cd $( dirname "${BASH_SOURCE[0]}" ) && pwd )
-
-# Note: dart_analyzer needs to be run from the root directory for proper path
-# canonicalization.
-pushd $DIR/..
-# TODO(jmesserly): switch to new analyzer. Note: it's missing a lot of the
-# tests for implemented members; we should get that fixed before switching.
-echo Analyzing library for warnings or type errors
-dartanalyzer --fatal-warnings lib/*.dart || \
-  echo "ignore analyzer errors"
-popd
-
-dart --checked test/run_all.dart $@
diff --git a/test/run_all.dart b/test/run_all.dart
deleted file mode 100644
index b050609..0000000
--- a/test/run_all.dart
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/env dart
-// Copyright (c) 2013, 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.
-
-library test.run_all;
-
-import 'package:test/test.dart';
-
-import 'dom_test.dart' as dom_test;
-import 'parser_feature_test.dart' as parser_feature_test;
-import 'parser_test.dart' as parser_test;
-import 'tokenizer_test.dart' as tokenizer_test;
-
-main(List<String> args) {
-  var pattern = new RegExp(args.length > 0 ? args[0] : '.');
-
-  void addGroup(testFile, void testMain()) {
-    if (pattern.hasMatch(testFile)) {
-      group(testFile.replaceAll('_test.dart', ':'), testMain);
-    }
-  }
-
-  addGroup('dom_test.dart', dom_test.main);
-  addGroup('parser_feature_test.dart', parser_feature_test.main);
-  addGroup('parser_test.dart', parser_test.main);
-  addGroup('tokenizer_test.dart', tokenizer_test.main);
-}
diff --git a/test/selectors/level1_baseline_test.dart b/test/selectors/level1_baseline_test.dart
index 9bac00d..52ecd3e 100644
--- a/test/selectors/level1_baseline_test.dart
+++ b/test/selectors/level1_baseline_test.dart
@@ -3,6 +3,9 @@
 ///
 /// Note, unlike the original we don't operate in-browser on a DOM loaded into
 /// an iframe, but instead operate over a parsed DOM.
+
+@Skip()
+
 library html.test.selectors.level1_baseline_test;
 
 import 'dart:io';