mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 bbbd9b6ec6
			
		
	
	
		bbbd9b6ec6
		
	
	
	
	
		
			
			In the discussion about renaming the `tests/acceptance` [1], the conclusion was that the folders inside `tests` are related to the framework running the tests and not directly related to the type of the tests. This changes the folder to `tests/avocado` and adjusts the MAKEFILE, the CI related files and the documentation. [1] https://lists.gnu.org/archive/html/qemu-devel/2021-05/msg06553.html Reviewed-by: Niek Linnenbank <nieklinnenbank@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Willian Rampazzo <willianr@redhat.com> Message-Id: <20211105155354.154864-3-willianr@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
		
			
				
	
	
		
			47 lines
		
	
	
		
			762 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			762 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| function print_usage()
 | |
| {
 | |
|     if [ -n "$2" ]; then
 | |
|         echo "Error: $2"
 | |
|         echo
 | |
|     fi
 | |
|     echo "Usage: $1 <scratch dir>"
 | |
| }
 | |
| 
 | |
| scratch_dir=$1
 | |
| if [ -z "$scratch_dir" ]; then
 | |
|     print_usage "$0" 'Scratch dir not given' >&2
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| cd "$scratch_dir/share" || exit 1
 | |
| mps=(mnt*)
 | |
| mp_i=0
 | |
| for mp in "${mps[@]}"; do
 | |
|     mp_i=$((mp_i + 1))
 | |
|     printf "Unmounting %i/%i...\r" "$mp_i" "${#mps[@]}"
 | |
| 
 | |
|     sudo umount -R "$mp"
 | |
|     rm -rf "$mp"
 | |
| done
 | |
| echo
 | |
| 
 | |
| rm some-file
 | |
| cd ..
 | |
| rmdir share
 | |
| 
 | |
| imgs=(fs*.img)
 | |
| img_i=0
 | |
| for img in "${imgs[@]}"; do
 | |
|     img_i=$((img_i + 1))
 | |
|     printf "Detaching and deleting %i/%i...\r" "$img_i" "${#imgs[@]}"
 | |
| 
 | |
|     dev=$(losetup -j "$img" | sed -e 's/:.*//')
 | |
|     sudo losetup -d "$dev"
 | |
|     rm -f "$img"
 | |
| done
 | |
| echo
 | |
| 
 | |
| echo 'Done.'
 |