| 
					
				 | 
			
			
				@@ -762,11 +762,11 @@ class ArchiverTestCase(ArchiverTestCaseBase): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         os.utime('input/file1', (now - 5, now - 5)) # 5 seconds ago 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         self.create_regular_file('file2', size=1024 * 80) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         self.cmd('init', self.repository_location) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        output = self.cmd('create', '-v', self.repository_location + '::test', 'input') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        output = self.cmd('create', '-v', '--list', self.repository_location + '::test', 'input') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         self.assert_in("A input/file1", output) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         self.assert_in("A input/file2", output) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         # should find first file as unmodified 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        output = self.cmd('create', '-v', self.repository_location + '::test1', 'input') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        output = self.cmd('create', '-v', '--list', self.repository_location + '::test1', 'input') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         self.assert_in("U input/file1", output) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         # this is expected, although surprising, for why, see: 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         # http://borgbackup.readthedocs.org/en/latest/faq.html#i-am-seeing-a-added-status-for-a-unchanged-file 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -785,7 +785,7 @@ class ArchiverTestCase(ArchiverTestCaseBase): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         output = self.cmd('create', self.repository_location + '::test0', 'input') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         self.assert_not_in('file1', output) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         # should list the file as unchanged 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        output = self.cmd('create', '-v', '--filter=U', self.repository_location + '::test1', 'input') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        output = self.cmd('create', '-v', '--list', '--filter=U', self.repository_location + '::test1', 'input') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         self.assert_in('file1', output) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         # should *not* list the file as changed 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         output = self.cmd('create', '-v', '--filter=AM', self.repository_location + '::test2', 'input') 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -793,7 +793,7 @@ class ArchiverTestCase(ArchiverTestCaseBase): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         # change the file 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         self.create_regular_file('file1', size=1024 * 100) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         # should list the file as changed 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        output = self.cmd('create', '-v', '--filter=AM', self.repository_location + '::test3', 'input') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        output = self.cmd('create', '-v', '--list', '--filter=AM', self.repository_location + '::test3', 'input') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         self.assert_in('file1', output) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     def test_cmdline_compatibility(self): 
			 |