Create test FAT32 image on build Moved test files to test_files directory Removed global array for test fat32 Part of #216 Removed hard coded test files Use @embedFile for large file test
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			202 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			202 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
IMAGE_PATH_DIR=$1
 | 
						|
 | 
						|
mkdir test/fat32/mnt
 | 
						|
sudo mount $IMAGE_PATH_DIR test/fat32/mnt/
 | 
						|
sudo cp test/fat32/test_files/* test/fat32/mnt/
 | 
						|
sudo umount test/fat32/mnt/
 | 
						|
rm -rf test/fat32/mnt
 |