 1a1c5fa05d
			
		
	
	
		1a1c5fa05d
		
			
		
	
	
	
	
		
			
			* Unit tests: fix IRDA test data * Fix format-errors on test data files * Fix sticking red/green light on unit-tests Co-authored-by: あく <alleteam@gmail.com> Co-authored-by: Albert Kharisov <albert@flipperdevices.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			975 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			975 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| # set -e
 | |
| 
 | |
| CLANG_FORMAT_BIN="/usr/bin/clang-format-12"
 | |
| PATH="$HOME/.cargo/bin:${PATH}"
 | |
| 
 | |
| PROJECT_DIR=$(pwd)
 | |
| 
 | |
| cd $PROJECT_DIR
 | |
| 
 | |
| echo "RUN C\C++ SYNTAX CHECK"
 | |
| C_FILES=$(find . \
 | |
|     -not \( -path './firmware/.obj' -prune \) \
 | |
|     -not \( -path './firmware/targets' -prune \) \
 | |
|     -not \( -path './assets' -prune \) \
 | |
|     -not \( -path ./lib -prune \) \
 | |
|     -name *.c -o -name *.h -o -name *.cpp)
 | |
| 
 | |
| ulimit -s 65536
 | |
| $CLANG_FORMAT_BIN --version
 | |
| $CLANG_FORMAT_BIN --verbose -style=file -n --Werror --ferror-limit=0 $C_FILES
 | |
| c_syntax_rc=$?
 | |
| 
 | |
| if [[ $c_syntax_rc -eq 0 ]]; then
 | |
|     echo "Code looks fine for me!"
 | |
|     exit 0
 | |
| fi
 | |
| 
 | |
| read -p "Do you want fix syntax? (y/n): " confirm && [[ $confirm == [yY] || $confirm == [yY][eE][sS] ]] || exit 1
 | |
| 
 | |
| cd $PROJECT_DIR
 | |
| 
 | |
| # We use root in container and clang-format rewriting files. We'll need change owner to original
 | |
| local_user=$(stat -c '%u' .clang-format)
 | |
| $CLANG_FORMAT_BIN -style=file -i $C_FILES
 | |
| chown $local_user $C_FILES
 |