mirror of
				https://git.proxmox.com/git/grub2
				synced 2025-10-30 23:34:47 +00:00 
			
		
		
		
	 7d44ff7de6
			
		
	
	
		7d44ff7de6
		
	
	
	
	
		
			
			quite some time locally. Most of the test require root so they are skipped when run without necessarry privelegies.
		
			
				
	
	
		
			25 lines
		
	
	
		
			496 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			496 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| set -e
 | |
| 
 | |
| if [ "x$EUID" = "x" ] ; then
 | |
|   EUID=`id -u`
 | |
| fi
 | |
| 
 | |
| if [ "$EUID" != 0 ] ; then
 | |
|    exit 77
 | |
| fi
 | |
| 
 | |
| if ! which mkfs.btrfs >/dev/null 2>&1; then
 | |
|    echo "mkfs.btrfs not installed; cannot test btrfs."
 | |
|    exit 77
 | |
| fi
 | |
| 
 | |
| "@builddir@/grub-fs-tester" btrfs
 | |
| "@builddir@/grub-fs-tester" btrfs_zlib
 | |
| "@builddir@/grub-fs-tester" btrfs_lzo
 | |
| "@builddir@/grub-fs-tester" btrfs_raid0
 | |
| "@builddir@/grub-fs-tester" btrfs_raid1
 | |
| "@builddir@/grub-fs-tester" btrfs_single
 | |
| "@builddir@/grub-fs-tester" btrfs_raid10
 |