From: borutr Date: Fri, 2 Jun 2006 18:41:14 +0000 (+0000) Subject: git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4205 4a8a32a2... X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=c97c8cdcd4e2f8f6437fa9a2c3a8c249cb8d2dcd;p=fw%2Fsdcc git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4205 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 119ac6db..f2ff07e1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-06-02 Borut Razem + + * support/regression/ports/pic16/support.c: increase stack size + to 255 bytes + * support/regression/Makefile.in: sort tests by name so that the + resutlts can be compared on different machines / platforms + 2006-06-02 Maarten Brock * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder diff --git a/support/regression/Makefile.in b/support/regression/Makefile.in index 5866ce6f..e0372895 100644 --- a/support/regression/Makefile.in +++ b/support/regression/Makefile.in @@ -134,7 +134,7 @@ test-host2: # Begin per-port rules # List of all of the known source test suites. -ALL_TESTS = $(shell find $(TESTS_DIR) -name "*.c") +ALL_TESTS = $(shell find $(TESTS_DIR) -name "*.c" | sort) # Intermediate directory PORT_CASES_DIR = $(CASES_DIR)/$(PORT) diff --git a/support/regression/ports/pic16/support.c b/support/regression/ports/pic16/support.c index 500cb2c2..9c3cb686 100644 --- a/support/regression/ports/pic16/support.c +++ b/support/regression/ports/pic16/support.c @@ -23,7 +23,7 @@ -------------------------------------------------------------------------*/ #pragma preproc_asm - -#pragma stack 0x200 128 /* set stack size to 128 bytes */ +#pragma stack 0x200 255 /* set stack size to 255 bytes */ #include