mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	functests: Improve error reporting in _check_parsing function
May be needed for unit tests as well though.
This commit is contained in:
		@@ -951,9 +951,20 @@ describe('api', function()
 | 
			
		||||
          end
 | 
			
		||||
        end)
 | 
			
		||||
        if not err then
 | 
			
		||||
          msg = format_string('Error while processing test (%r, %s):\n%s',
 | 
			
		||||
                              str, FLAGS_TO_STR[flags], msg)
 | 
			
		||||
          error(msg)
 | 
			
		||||
          if type(msg) == 'table' then
 | 
			
		||||
            local merr, new_msg = pcall(
 | 
			
		||||
              format_string, 'table error:\n%s\n\n(%r)', msg.message, msg)
 | 
			
		||||
            if merr then
 | 
			
		||||
              msg = new_msg
 | 
			
		||||
            else
 | 
			
		||||
              msg = format_string('table error without .message:\n(%r)',
 | 
			
		||||
                                  msg)
 | 
			
		||||
            end
 | 
			
		||||
          elseif type(msg) ~= 'string' then
 | 
			
		||||
            msg = format_string('non-string non-table error:\n%r', msg)
 | 
			
		||||
          end
 | 
			
		||||
          error(format_string('Error while processing test (%r, %s):\n%s',
 | 
			
		||||
                              str, FLAGS_TO_STR[flags], msg))
 | 
			
		||||
        end
 | 
			
		||||
      end
 | 
			
		||||
    end
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user