~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/kunit/assert.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/kunit/assert.h (Version linux-6.12-rc7) and /include/kunit/assert.h (Version linux-6.6.58)


** Warning: Cannot open xref database.

  1 /* SPDX-License-Identifier: GPL-2.0 */              1 
  2 /*                                                
  3  * Assertion and expectation serialization API    
  4  *                                                
  5  * Copyright (C) 2019, Google LLC.                
  6  * Author: Brendan Higgins <brendanhiggins@goo    
  7  */                                               
  8                                                   
  9 #ifndef _KUNIT_ASSERT_H                           
 10 #define _KUNIT_ASSERT_H                           
 11                                                   
 12 #include <linux/err.h>                            
 13 #include <linux/printk.h>                         
 14                                                   
 15 struct kunit;                                     
 16 struct string_stream;                             
 17                                                   
 18 /**                                               
 19  * enum kunit_assert_type - Type of expectatio    
 20  * @KUNIT_ASSERTION: Used to denote that a kun    
 21  * @KUNIT_EXPECTATION: Denotes that a kunit_as    
 22  *                                                
 23  * Used in conjunction with a &struct kunit_as    
 24  * represents an expectation or an assertion.     
 25  */                                               
 26 enum kunit_assert_type {                          
 27         KUNIT_ASSERTION,                          
 28         KUNIT_EXPECTATION,                        
 29 };                                                
 30                                                   
 31 /**                                               
 32  * struct kunit_loc - Identifies the source lo    
 33  * @line: the line number in the file.            
 34  * @file: the file name.                          
 35  */                                               
 36 struct kunit_loc {                                
 37         int line;                                 
 38         const char *file;                         
 39 };                                                
 40                                                   
 41 #define KUNIT_CURRENT_LOC { .file = __FILE__,     
 42                                                   
 43 /**                                               
 44  * struct kunit_assert - Data for printing a f    
 45  *                                                
 46  * Represents a failed expectation/assertion.     
 47  * format a string to a user reporting the fai    
 48  */                                               
 49 struct kunit_assert {};                           
 50                                                   
 51 typedef void (*assert_format_t)(const struct k    
 52                                 const struct v    
 53                                 struct string_    
 54                                                   
 55 void kunit_assert_prologue(const struct kunit_    
 56                            enum kunit_assert_t    
 57                            struct string_strea    
 58                                                   
 59 /**                                               
 60  * struct kunit_fail_assert - Represents a pla    
 61  * @assert: The parent of this type.              
 62  *                                                
 63  * Represents a simple KUNIT_FAIL/KUNIT_FAIL_A    
 64  */                                               
 65 struct kunit_fail_assert {                        
 66         struct kunit_assert assert;               
 67 };                                                
 68                                                   
 69 void kunit_fail_assert_format(const struct kun    
 70                               const struct va_    
 71                               struct string_st    
 72                                                   
 73 /**                                               
 74  * struct kunit_unary_assert - Represents a KU    
 75  * @assert: The parent of this type.              
 76  * @condition: A string representation of a co    
 77  * @expected_true: True if of type KUNIT_{EXPE    
 78  *                                                
 79  * Represents a simple expectation or assertio    
 80  * true or false. In other words, represents t    
 81  * KUNIT_{EXPECT|ASSERT}_{TRUE|FALSE}             
 82  */                                               
 83 struct kunit_unary_assert {                       
 84         struct kunit_assert assert;               
 85         const char *condition;                    
 86         bool expected_true;                       
 87 };                                                
 88                                                   
 89 void kunit_unary_assert_format(const struct ku    
 90                                const struct va    
 91                                struct string_s    
 92                                                   
 93 /**                                               
 94  * struct kunit_ptr_not_err_assert - An expect    
 95  *      not NULL and not a -errno.                
 96  * @assert: The parent of this type.              
 97  * @text: A string representation of the expre    
 98  * @value: The actual evaluated pointer value     
 99  *                                                
100  * Represents an expectation/assertion that a     
101  * not contain a -errno. (See IS_ERR_OR_NULL()    
102  */                                               
103 struct kunit_ptr_not_err_assert {                 
104         struct kunit_assert assert;               
105         const char *text;                         
106         const void *value;                        
107 };                                                
108                                                   
109 void kunit_ptr_not_err_assert_format(const str    
110                                      const str    
111                                      struct st    
112                                                   
113 /**                                               
114  * struct kunit_binary_assert_text - holds str    
115  *      kunit_binary_assert and friends to try    
116  * @operation: A string representation of the     
117  * @left_text: A string representation of the     
118  * @right_text: A string representation of the    
119  */                                               
120 struct kunit_binary_assert_text {                 
121         const char *operation;                    
122         const char *left_text;                    
123         const char *right_text;                   
124 };                                                
125                                                   
126 /**                                               
127  * struct kunit_binary_assert - An expectation    
128  *      non-pointer values (for example, KUNIT    
129  * @assert: The parent of this type.              
130  * @text: Holds the textual representations of    
131  * @left_value: The actual evaluated value of     
132  * @right_value: The actual evaluated value of    
133  *                                                
134  * Represents an expectation/assertion that co    
135  * example, to expect that 1 + 1 == 2, you can    
136  * KUNIT_EXPECT_EQ(test, 1 + 1, 2);               
137  */                                               
138 struct kunit_binary_assert {                      
139         struct kunit_assert assert;               
140         const struct kunit_binary_assert_text     
141         long long left_value;                     
142         long long right_value;                    
143 };                                                
144                                                   
145 void kunit_binary_assert_format(const struct k    
146                                 const struct v    
147                                 struct string_    
148                                                   
149 /**                                               
150  * struct kunit_binary_ptr_assert - An expecta    
151  *      pointer values (for example, KUNIT_EXP    
152  * @assert: The parent of this type.              
153  * @text: Holds the textual representations of    
154  * @left_value: The actual evaluated value of     
155  * @right_value: The actual evaluated value of    
156  *                                                
157  * Represents an expectation/assertion that co    
158  * example, to expect that foo and bar point t    
159  * expectation KUNIT_EXPECT_PTR_EQ(test, foo,     
160  */                                               
161 struct kunit_binary_ptr_assert {                  
162         struct kunit_assert assert;               
163         const struct kunit_binary_assert_text     
164         const void *left_value;                   
165         const void *right_value;                  
166 };                                                
167                                                   
168 void kunit_binary_ptr_assert_format(const stru    
169                                     const stru    
170                                     struct str    
171                                                   
172 /**                                               
173  * struct kunit_binary_str_assert - An expecta    
174  *      string values (for example, KUNIT_EXPE    
175  * @assert: The parent of this type.              
176  * @text: Holds the textual representations of    
177  * @left_value: The actual evaluated value of     
178  * @right_value: The actual evaluated value of    
179  *                                                
180  * Represents an expectation/assertion that co    
181  * example, to expect that the string in foo i    
182  * expectation KUNIT_EXPECT_STREQ(test, foo, "    
183  */                                               
184 struct kunit_binary_str_assert {                  
185         struct kunit_assert assert;               
186         const struct kunit_binary_assert_text     
187         const char *left_value;                   
188         const char *right_value;                  
189 };                                                
190                                                   
191 void kunit_binary_str_assert_format(const stru    
192                                     const stru    
193                                     struct str    
194                                                   
195 /**                                               
196  * struct kunit_mem_assert - An expectation/as    
197  *      memory blocks.                            
198  * @assert: The parent of this type.              
199  * @text: Holds the textual representations of    
200  * @left_value: The actual evaluated value of     
201  * @right_value: The actual evaluated value of    
202  * @size: Size of the memory block analysed in    
203  *                                                
204  * Represents an expectation/assertion that co    
205  * example, to expect that the first three byt    
206  * first three bytes of bar, you can use the e    
207  * KUNIT_EXPECT_MEMEQ(test, foo, bar, 3);         
208  */                                               
209 struct kunit_mem_assert {                         
210         struct kunit_assert assert;               
211         const struct kunit_binary_assert_text     
212         const void *left_value;                   
213         const void *right_value;                  
214         const size_t size;                        
215 };                                                
216                                                   
217 void kunit_mem_assert_format(const struct kuni    
218                              const struct va_f    
219                              struct string_str    
220                                                   
221 #if IS_ENABLED(CONFIG_KUNIT)                      
222 void kunit_assert_print_msg(const struct va_fo    
223                             struct string_stre    
224 bool is_literal(const char *text, long long va    
225 bool is_str_literal(const char *text, const ch    
226 void kunit_assert_hexdump(struct string_stream    
227                           const void *buf,        
228                           const void *compared    
229                           const size_t len);      
230 #endif                                            
231                                                   
232 #endif /*  _KUNIT_ASSERT_H */                     
233                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php