Fix the status file to match the package bots' expectations.
diff --git a/.status b/.status
index 2210618..d98886c 100644
--- a/.status
+++ b/.status
@@ -2,12 +2,19 @@
 # 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.
 
+# Skip non-test files ending with "_test".
+*/packages/*: Skip
+
+# Only run tests from the build directory, since we don't care about the
+# difference between transformed an untransformed code.
+test/*: Skip
+
 [ $browser ]
-http/test/io/*: Fail, OK # Uses dart:io.
+*/io/*: Fail, OK # Uses dart:io.
 
 [ $runtime == vm ]
-http/test/html/*: Skip # Uses dart:html.
+*/html/*: Skip # Uses dart:html.
 
 [ $runtime == drt ]
-http/test/html/client_test: Skip # Issue 18566
+*/html/client_test: Skip # Issue 18566