mirror of
				https://github.com/containers/podman.git
				synced 2025-10-29 00:38:34 +08:00 
			
		
		
		
	 8aa3776981
			
		
	
	8aa3776981
	
	
	
		
			
			To leave not leave some artifacts arounds. Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			361 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			361 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env sh
 | |
| source ./helpers.bash
 | |
| 
 | |
| setup
 | |
| echo_bold "Remove $RUNS containers in a row"
 | |
| hyperfine --warmup 10 --runs $RUNS \
 | |
| 	--prepare "$ENGINE_A create --name=123 $IMAGE" \
 | |
| 	--prepare "$ENGINE_B create --name=123 $IMAGE" \
 | |
| 	"$ENGINE_A rm 123" \
 | |
| 	"$ENGINE_B rm 123"
 | |
| 
 | |
| # Clean up
 | |
| $ENGINE_A system prune -f >> /dev/null
 | |
| $ENGINE_B system prune -f >> /dev/null
 |