mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	ZTS: Fix summary page creation
There are cases, where some needed files for the summary page aren't created. Currently the whole Summary Page creation will fail then. Sample run: https://github.com/openzfs/zfs/actions/runs/11148248072/job/30999748588 Fix this, by properly checking for existence of the needed files. Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Rob Norris <robn@despairlabs.com> Signed-off-by: Tino Reichardt <milky-zfs@mcmilk.de> Closes #16599
This commit is contained in:
		
							parent
							
								
									17a2b35be5
								
							
						
					
					
						commit
						3d0175d10e
					
				| @ -11,10 +11,12 @@ function output() { | ||||
| } | ||||
| 
 | ||||
| function outfile() { | ||||
|   test -s "$1" || return | ||||
|   cat "$1" >> "out-$logfile.md" | ||||
| } | ||||
| 
 | ||||
| function outfile_plain() { | ||||
|   test -s "$1" || return | ||||
|   output "<pre>" | ||||
|   cat "$1" >> "out-$logfile.md" | ||||
|   output "</pre>" | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Tino Reichardt
						Tino Reichardt