* support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
authorbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 10 Mar 2003 12:47:03 +0000 (12:47 +0000)
committerbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 10 Mar 2003 12:47:03 +0000 (12:47 +0000)
* support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
* support/regression/ports/xa51/spec.mk: fix typo in comment

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2361 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
support/regression/ports/ds390/spec.mk
support/regression/ports/mcs51/spec.mk
support/regression/ports/xa51/spec.mk

index 11e27c77d846c2a5b38437ea0cf0b9098608fe45..b2653aab3824a29559e6742311b093add4a278aa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-03-10  Bernhard Held <bernhard@bernhardheld.de>
+
+       * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
+       * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
+       * support/regression/ports/xa51/spec.mk: fix typo
+
 2003-03-09  Bernhard Held <bernhard@bernhardheld.de>
 
        * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
index 8b2368a3e4c89ecaeed5b3649a699272f15c2a4f..0e188c614887117ae0c07f2a80d66a558bc26948 100644 (file)
@@ -23,10 +23,10 @@ EXTRAS = $(PORTS_DIR)/$(PORT)/testfwk$(OBJEXT) $(PORTS_DIR)/$(PORT)/support$(OBJ
 $(PORTS_DIR)/$(PORT)/testfwk$(OBJEXT): fwk/lib/testfwk.c
        $(SDCC) $(SDCCFLAGS) -c $< -o $@
        
-# run simulator with 10 seconds timeout
+# run simulator with 25 seconds timeout
 %.out: %$(EXEEXT) fwk/lib/timeout
        mkdir -p `dirname $@`
-       -fwk/lib/timeout 20 $(S51) -tds390f -S in=/dev/null,out=$@ $< < $(PORTS_DIR)/ds390/uCsim.cmd >/dev/null || \
+       -fwk/lib/timeout 25 $(S51) -tds390f -S in=/dev/null,out=$@ $< < $(PORTS_DIR)/ds390/uCsim.cmd >/dev/null || \
           echo -e --- FAIL: \"timeout, simulation killed\" in $(<:$(EXEEXT)=.c)"\n"--- Summary: 1/1/1: timeout >> $@
        -grep -n FAIL $@ /dev/null || true
 
index 48a03216afeaf4f4304198c651a9aca293d668fb..85a5c3087111263e7e6fc28bc5a74d85609cc457 100644 (file)
@@ -25,10 +25,10 @@ EXTRAS = $(PORTS_DIR)/$(PORT)/testfwk$(OBJEXT) $(PORTS_DIR)/$(PORT)/support$(OBJ
 $(PORTS_DIR)/$(PORT)/testfwk$(OBJEXT): fwk/lib/testfwk.c
        $(SDCC) $(SDCCFLAGS) -c $< -o $@
 
-# run simulator with 10 seconds timeout
+# run simulator with 30 seconds timeout
 %.out: %$(EXEEXT) fwk/lib/timeout
        mkdir -p `dirname $@`
-       -fwk/lib/timeout 20 $(S51) -t32 -S in=/dev/null,out=$@ $< < $(PORTS_DIR)/mcs51/uCsim.cmd >/dev/null \
+       -fwk/lib/timeout 30 $(S51) -t32 -S in=/dev/null,out=$@ $< < $(PORTS_DIR)/mcs51/uCsim.cmd >/dev/null \
          || echo -e --- FAIL: \"timeout, simulation killed\" in $(<:$(EXEEXT)=.c)"\n"--- Summary: 1/1/1: timeout >> $@
        -grep -n FAIL $@ /dev/null || true
 
index 877ed2df6bebde0720aacb15b3fa70449b5474ec..cf73e20381a99ce3544c89d69085294c3173ecc2 100755 (executable)
@@ -25,7 +25,7 @@ EXTRAS = $(PORTS_DIR)/$(PORT)/testfwk$(OBJEXT) $(PORTS_DIR)/$(PORT)/support$(OBJ
 $(PORTS_DIR)/$(PORT)/%$(OBJEXT): fwk/lib/%.c
        $(SDCC) $(SDCCFLAGS) -c $< -o $@
 
-# run simulator with 10 seconds timeout
+# run simulator with 1 second timeout
 %.out: %$(EXEEXT) fwk/lib/timeout
        mkdir -p `dirname $@`
        -fwk/lib/timeout 1 $(SXA) -S in=/dev/null,out=$@ $< < $(PORTS_DIR)/xa51/uCsim.cmd >/dev/null || \