 80629de01e
			
		
	
	
		80629de01e
		
			
		
	
	
	
	
		
			
			* Move samsung raw data to assets * Add more assets and fix bugs * Clean up code * Implement all raw data as assets * Remove input data from old test files * Better signal names * Better file opening logic * Implement loading parsed data from files * Move most of RC5 tests into assets * Add more test cases * Add more test cases * Eliminate RUN_DECODER macro * Better code structure * Implement run_encoder function * More encoder tests * Move all encoder tests to assets * Move all test data to assets * Normalise function names * Rename code files * Uncomment other tests * Swich test order to avoid weird memory leaks * UnitTests: cleanup output and redirect it into stdout * UnitTests: selectable tests and better reporting Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <stdio.h>
 | |
| #include <string.h>
 | |
| #include <furi.h>
 | |
| #include "furi_hal_delay.h"
 | |
| 
 | |
| #include "../minunit.h"
 | |
| 
 | |
| void test_furi_valuemutex() {
 | |
|     const int init_value = 0xdeadbeef;
 | |
|     const int changed_value = 0x12345678;
 | |
| 
 | |
|     int value = init_value;
 | |
|     bool result;
 | |
|     ValueMutex valuemutex;
 | |
| 
 | |
|     // init mutex case
 | |
|     result = init_mutex(&valuemutex, &value, sizeof(value));
 | |
|     mu_assert(result, "init mutex failed");
 | |
| 
 | |
|     // acquire mutex case
 | |
|     int* value_pointer = acquire_mutex(&valuemutex, 100);
 | |
|     mu_assert_pointers_eq(value_pointer, &value);
 | |
| 
 | |
|     // second acquire mutex case
 | |
|     int* value_pointer_second = acquire_mutex(&valuemutex, 100);
 | |
|     mu_assert_pointers_eq(value_pointer_second, NULL);
 | |
| 
 | |
|     // change value case
 | |
|     *value_pointer = changed_value;
 | |
|     mu_assert_int_eq(value, changed_value);
 | |
| 
 | |
|     // release mutex case
 | |
|     result = release_mutex(&valuemutex, &value);
 | |
|     mu_assert(result, "release mutex failed");
 | |
| 
 | |
|     // TODO
 | |
|     //acquire mutex blocking case
 | |
|     //write mutex blocking case
 | |
|     //read mutex blocking case
 | |
| 
 | |
|     mu_check(delete_mutex(&valuemutex));
 | |
| }
 |