Add unit test cases for thread init
This commit is contained in:
		
							parent
							
								
									7bbd74cb17
								
							
						
					
					
						commit
						5b980734ed
					
				| @ -1,8 +1,31 @@ | ||||
| #include "unittest.h" | ||||
| #include "emu/thread.h" | ||||
| #include "common.h" | ||||
| 
 | ||||
| /* Ensure we can load the old trace format */ | ||||
| static void | ||||
| test_old_trace(void) | ||||
| { | ||||
| 	struct thread th; | ||||
| 
 | ||||
| 	OK(thread_init_begin(&th, "loom.0/proc.0/thread.1.obs")); | ||||
| 	if (th.tid != 1) | ||||
| 		die("wrong tid"); | ||||
| 
 | ||||
| 	OK(thread_init_begin(&th, "loom.0/proc.0/thread.2")); | ||||
| 	if (th.tid != 2) | ||||
| 		die("wrong tid"); | ||||
| 
 | ||||
| 	ERR(thread_init_begin(&th, "loom.0/proc.0/thread.kk")); | ||||
| 	ERR(thread_init_begin(&th, "loom.0/proc.0/thread.")); | ||||
| 	ERR(thread_init_begin(&th, "loom.0/proc.0/thread")); | ||||
| 	ERR(thread_init_begin(&th, "thread.prv")); | ||||
| 
 | ||||
| 	err("ok"); | ||||
| } | ||||
| 
 | ||||
| int main(void) | ||||
| { | ||||
| 	test_old_trace(); | ||||
| 
 | ||||
| 	return 0; | ||||
| } | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user