 126e3b3d2a
			
		
	
	126e3b3d2a
	
	
	
		
			
			Many test helper programs do not bother to look at argc or argv, because they don't take any options. In a user-facing program, it's a good idea to check for unexpected arguments and complain. But for a test helper, it's not worth the trouble to enforce this. But we do want to tell the compiler we're OK with ignoring them, to silence -Wunused-parameter (and obviously we can't get rid of them, since we have to conform to the usual cmd__foo() interface). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
			
				
	
	
		
			52 lines
		
	
	
		
			994 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			994 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "test-tool.h"
 | |
| #include "prio-queue.h"
 | |
| 
 | |
| static int intcmp(const void *va, const void *vb, void *data UNUSED)
 | |
| {
 | |
| 	const int *a = va, *b = vb;
 | |
| 	return *a - *b;
 | |
| }
 | |
| 
 | |
| static void show(int *v)
 | |
| {
 | |
| 	if (!v)
 | |
| 		printf("NULL\n");
 | |
| 	else
 | |
| 		printf("%d\n", *v);
 | |
| 	free(v);
 | |
| }
 | |
| 
 | |
| int cmd__prio_queue(int argc UNUSED, const char **argv)
 | |
| {
 | |
| 	struct prio_queue pq = { intcmp };
 | |
| 
 | |
| 	while (*++argv) {
 | |
| 		if (!strcmp(*argv, "get")) {
 | |
| 			void *peek = prio_queue_peek(&pq);
 | |
| 			void *get = prio_queue_get(&pq);
 | |
| 			if (peek != get)
 | |
| 				BUG("peek and get results do not match");
 | |
| 			show(get);
 | |
| 		} else if (!strcmp(*argv, "dump")) {
 | |
| 			void *peek;
 | |
| 			void *get;
 | |
| 			while ((peek = prio_queue_peek(&pq))) {
 | |
| 				get = prio_queue_get(&pq);
 | |
| 				if (peek != get)
 | |
| 					BUG("peek and get results do not match");
 | |
| 				show(get);
 | |
| 			}
 | |
| 		} else if (!strcmp(*argv, "stack")) {
 | |
| 			pq.compare = NULL;
 | |
| 		} else {
 | |
| 			int *v = xmalloc(sizeof(*v));
 | |
| 			*v = atoi(*argv);
 | |
| 			prio_queue_put(&pq, v);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	clear_prio_queue(&pq);
 | |
| 
 | |
| 	return 0;
 | |
| }
 |