Update the ancient .status file for Intl, add @TestOn directives for date-format tests that rely on dart:io

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=172345007
diff --git a/.status b/.status
index a88dfbc..9fc3179 100644
--- a/.status
+++ b/.status
@@ -2,53 +2,12 @@
 # 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.
-*/packages/*/*: Skip
-*/*/packages/*/*: Skip
-*/*/*/packages/*/*: Skip
-
-build/test/intl_message_basic_example_test: Skip # invalid import under pub's package-layout
-
-[ $compiler == dart2js ]
-test/*: Skip  # raw tests only meant to be run in dartium. Other browsers run
-              # the output of pub-build
-test/intl_message_basic_example_test: Skip # invalid import under pub's package-layout
-
-[ $compiler == none && ($runtime == drt || $runtime == dartium || $runtime == ContentShellOnAndroid) ]
-test/date_time_format_http_request_test: Skip # Times out flakily. Issue 19544
-test/date_time_format_local_even_test: Skip # Times out flakily. Issue 19544
-test/date_time_format_local_odd_test: Skip # Times out flakily. Issue 19544
-build/test/date_time_format_http_request_test: Skip # Times out flakily. Issue 19544
-build/test/date_time_format_local_even_test: Skip # Times out flakily. Issue 19544
-build/test/date_time_format_local_odd_test: Skip # Times out flakily. Issue 19544
-
-[ $runtime == opera && $compiler == dart2js ]
-build/test/find_default_locale_browser_test: Fail
-build/test/date_time_format_http_request_test: Skip # Timeout.
-
-[ $ie ]
-build/test/date_time_format_http_request_test: Fail # Issue 8983
-
 [ $runtime == vm ]
 test/find_default_locale_browser_test: Skip
-test/date_time_format_http_request_test: Skip
-build/*: Skip
 
 [ $runtime == vm && $system == windows ]
 test/find_default_locale_standalone_test: Fail # Issue 8110
-build/test/find_default_locale_standalone_test: Fail # Issue 8110
-
-[ $runtime == jsshell ]
-test/number_closure_test: Fail # Doesn't support timer > 0, used in async test
-build/test/number_closure_test: Fail # Doesn't support timer > 0, used in async test
-
-[ $compiler == dart2js && $runtime == chromeOnAndroid ]
-build/test/date_time_format_http_request_test: Fail # TODO(kasperl): Please triage.
 
 [ $browser ]
 test/date_time_format_file_even_test: Skip # Uses dart:io.
 test/date_time_format_file_odd_test: Skip # Uses dart:io.
-test/find_default_locale_standalone_test: Skip # Uses dart:io.
-build/test/date_time_format_file_even_test: Skip # Uses dart:io.
-build/test/date_time_format_file_odd_test: Skip # Uses dart:io.
-build/test/find_default_locale_standalone_test: Skip # Uses dart:io.
diff --git a/test/date_time_format_file_even_test.dart b/test/date_time_format_file_even_test.dart
index 1ff0fcf..eb6a723 100644
--- a/test/date_time_format_file_even_test.dart
+++ b/test/date_time_format_file_even_test.dart
@@ -7,6 +7,7 @@
 /// of them takes long enough that it may cause timeouts in the test bots.
 
 @Timeout(const Duration(seconds: 60))
+@TestOn("vm")
 library date_time_format_file_test_2;
 
 import 'date_time_format_test_stub.dart';
diff --git a/test/date_time_format_file_odd_test.dart b/test/date_time_format_file_odd_test.dart
index 6d7e7b0..3bb2d66 100644
--- a/test/date_time_format_file_odd_test.dart
+++ b/test/date_time_format_file_odd_test.dart
@@ -7,6 +7,7 @@
 /// of them takes long enough that it may cause timeouts in the test bots.
 
 @Timeout(const Duration(seconds: 60))
+@TestOn("vm")
 library date_time_format_file_test_1;
 
 import 'date_time_format_test_stub.dart';