mirror of
				https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
				synced 2025-10-30 23:58:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			141 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			141 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| SYSCTL="/proc/sys"
 | |
| TARGET="${SYSCTL}/vm/swappiness"
 | |
| ORIG=$(cat "${TARGET}")
 | |
| TEST_STR=$(( $ORIG + 1 ))
 | |
| 
 | |
| . ./common_tests
 | |
| 
 | |
| exit $rc
 | 
