Added 2 new sbrktests, one to test a huge sbrk with only touch a few pages (shouldn't crash), and another to make sure pages are getting freed when the breakpoint moves down. Also, added a stacktest that checks that 4M stacks are supported and pages are allocated on-demand.
		
			
				
	
	
		
			12 lines
		
	
	
		
			157 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			157 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# Makefile for huge
 | 
						|
 | 
						|
TOP=../../..
 | 
						|
.include "$(TOP)/mk/os161.config.mk"
 | 
						|
 | 
						|
PROG=stacktest
 | 
						|
SRCS=stacktest.c
 | 
						|
BINDIR=/testbin
 | 
						|
 | 
						|
.include "$(TOP)/mk/os161.prog.mk"
 | 
						|
 |