| Index: tests/standalone/io/file_system_watcher_test.dart
 | 
| diff --git a/tests/standalone/io/file_system_watcher_test.dart b/tests/standalone/io/file_system_watcher_test.dart
 | 
| index 2cc97b7aadb9b317115d2781736275618134e831..a28d7edca0f3c300130ffb3049e2d6fa96c29360 100644
 | 
| --- a/tests/standalone/io/file_system_watcher_test.dart
 | 
| +++ b/tests/standalone/io/file_system_watcher_test.dart
 | 
| @@ -86,6 +86,8 @@ void testWatchModifyFile() {
 | 
|  
 | 
|  
 | 
|  void testWatchMoveFile() {
 | 
| +  // Mac OS doesn't report move events.
 | 
| +  if (Platform.isMacOS) return;
 | 
|    var dir = Directory.systemTemp.createTempSync('dart_file_system_watcher');
 | 
|    var file = new File(join(dir.path, 'file'));
 | 
|    file.createSync();
 | 
| 
 |