git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4205 4a8a32a2...
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Fri, 2 Jun 2006 18:41:14 +0000 (18:41 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Fri, 2 Jun 2006 18:41:14 +0000 (18:41 +0000)
ChangeLog
support/regression/Makefile.in
support/regression/ports/pic16/support.c

index 119ac6dbb39bd16f30201301294504a15f17898e..f2ff07e140dc9a0d08f28fced93ee9d1f979e8e8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-06-02 Borut Razem <borut.razem AT siol.net>
+
+       * 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 <sourceforge.brock AT dse.nl>
 
        * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
index 5866ce6f445fd3e51ac11eaf9d5c27baeff43834..e03728959919057bb4835fb8f9450784c45e0d33 100644 (file)
@@ -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)
index 500cb2c2fd09e90f60d7fa38fdabd4f1c6e5102a..9c3cb686cbc869d6b4ee128cd37b4b8c050e680a 100644 (file)
@@ -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 <pic18f452.h>