mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 11:42:30 +00:00 
			
		
		
		
	tests/techmap/run-test.sh to cope with *.ys
This commit is contained in:
		
							parent
							
								
									4c0404ae02
								
							
						
					
					
						commit
						d62c10d641
					
				
					 2 changed files with 18 additions and 7 deletions
				
			
		
							
								
								
									
										1
									
								
								tests/techmap/.gitignore
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								tests/techmap/.gitignore
									
										
									
									
										vendored
									
									
								
							|  | @ -1 +1,2 @@ | ||||||
| *.log | *.log | ||||||
|  | /*.mk | ||||||
|  |  | ||||||
|  | @ -1,10 +1,20 @@ | ||||||
| #!/bin/bash | #!/usr/bin/env bash | ||||||
| set -e | set -e | ||||||
| for x in *_runtest.sh; do | { | ||||||
| 	echo "Running $x.." | echo "all::" | ||||||
| 	if ! bash $x &> ${x%.sh}.log; then | for x in *.ys; do | ||||||
| 		tail ${x%.sh}.log | 	echo "all:: run-$x" | ||||||
| 		echo ERROR | 	echo "run-$x:" | ||||||
| 		exit 1 | 	echo "	@echo 'Running $x..'" | ||||||
|  | 	echo "	@../../yosys -ql ${x%.ys}.log $x" | ||||||
|  | done | ||||||
|  | for s in *.sh; do | ||||||
|  | 	if [ "$s" != "run-test.sh" ]; then | ||||||
|  | 		echo "all:: run-$s" | ||||||
|  | 		echo "run-$s:" | ||||||
|  | 		echo "	@echo 'Running $s..'" | ||||||
|  | 		echo "	@bash $s > ${s%.sh}.log 2>&1" | ||||||
| 	fi | 	fi | ||||||
| done | done | ||||||
|  | } > run-test.mk | ||||||
|  | exec ${MAKE:-make} -f run-test.mk | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue