 25bef2d8f9
			
		
	
	
		25bef2d8f9
		
	
	
	
	
		
			
			The library does not depend on stdenv, that `stdenv` exposes `lib` is an artifact of the ancient origins of nixpkgs.
		
			
				
	
	
		
			23 lines
		
	
	
		
			681 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			681 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| import ./make-test-python.nix ({ pkgs, ... }:
 | |
| 
 | |
| let
 | |
|   riscvPkgs = import ../.. { crossSystem = pkgs.lib.systems.examples.riscv64-embedded; };
 | |
| in
 | |
| {
 | |
|   name = "spike";
 | |
|   meta = with pkgs.lib.maintainers; { maintainers = [ blitz ]; };
 | |
| 
 | |
|   machine = { pkgs, lib, ... }: {
 | |
|     environment.systemPackages = [ pkgs.spike riscvPkgs.riscv-pk riscvPkgs.hello ];
 | |
|   };
 | |
| 
 | |
|   # Run the RISC-V hello applications using the proxy kernel on the
 | |
|   # Spike emulator and see whether we get the expected output.
 | |
|   testScript =
 | |
|     ''
 | |
|       machine.wait_for_unit("multi-user.target")
 | |
|       output = machine.succeed("spike -m64 $(which pk) $(which hello)")
 | |
|       assert output == "Hello, world!\n"
 | |
|     '';
 | |
| })
 |