mirror of
				https://github.com/go-delve/delve.git
				synced 2025-10-31 10:47:27 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			364 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			364 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package op
 | |
| 
 | |
| import "testing"
 | |
| 
 | |
| func TestExecuteStackProgram(t *testing.T) {
 | |
| 	var (
 | |
| 		instructions = []byte{DW_OP_consts, 0x1c, DW_OP_consts, 0x1c, DW_OP_plus}
 | |
| 		expected     = int64(56)
 | |
| 	)
 | |
| 	actual, err := ExecuteStackProgram(0, instructions)
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 
 | |
| 	if actual != expected {
 | |
| 		t.Fatalf("actual %d != expected %d", actual, expected)
 | |
| 	}
 | |
| }
 | 
