* Removed some dead code (successor stuff) from nix-push. * Updated terminology in the tests (store expr -> drv path). * Check that the deriver is set properly in the tests.
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			509 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			509 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| drvPath=$($TOP/src/nix-instantiate/nix-instantiate fallback.nix)
 | |
| echo "derivation is $drvPath"
 | |
| 
 | |
| outPath=$($TOP/src/nix-store/nix-store -q --fallback "$drvPath")
 | |
| echo "output path is $outPath"
 | |
| 
 | |
| # Register a non-existant substitute
 | |
| (echo $outPath && echo "" && echo $TOP/no-such-program && echo 0 && echo 0) | $TOP/src/nix-store/nix-store --substitute
 | |
| 
 | |
| # Build the derivation
 | |
| $TOP/src/nix-store/nix-store -r --fallback "$drvPath"
 | |
| 
 | |
| text=$(cat "$outPath"/hello)
 | |
| if test "$text" != "Hello World!"; then exit 1; fi
 |