[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Possible m4-1.4.13 issue
From: |
Tim Wood |
Subject: |
Possible m4-1.4.13 issue |
Date: |
Tue, 06 Oct 2009 10:40:59 -0700 |
User-agent: |
Thunderbird 2.0.0.23 (Windows/20090812) |
TWIMC:
Platform info:
Linux axolotl.home.tim.wood.name 2.4.20-30.7.legacy #1 Fri Feb 20 14:31:41 PST
2004 i586 unknown
gcc --version: 2.96
make --version: GNU Make version 3.79.1, by Richard Stallman and Roland McGrath.
Built for i386-redhat-linux-gnu
I ran into this test failure building m4-1.4.13:
---
Skipping test: ungetc cannot handle arbitrary bytes
SKIP: test-fseeko2.sh
test-ftello.c:119: assertion failed
./test-ftello.sh: line 3: 16223 Aborted ./test-ftello${EXEEXT} 1
<"$srcdir/test-ftello.sh"
FAIL: test-ftello.sh
Skipping test: ungetc cannot handle arbitrary bytes
SKIP: test-ftello2.sh
---
The offending lines in test-ftello.c:
114 #if !defined __MINT__ /* FreeMiNT has problems seeking past end of file
*/
115 /* Test ftell beyond end of file. */
116 ASSERT (fseek (stdin, 0, SEEK_END) == 0);
117 ch = ftello (stdin);
118 ASSERT (fseek (stdin, 10, SEEK_END) == 0);
119 ASSERT (ftell (stdin) == ch + 10);
120 ASSERT (ftello (stdin) == ch + 10);
121 #endif
---
test-ftello executable invoked by test-ftello.sh:
1 #!/bin/sh
2
3 ./test-ftello${EXEEXT} 1 < "$srcdir/test-ftello.sh" || exit 1
4 echo hi | ./test-ftello${EXEEXT} || exit 1
5 exit 0
---
Thanks,
TW
- Possible m4-1.4.13 issue,
Tim Wood <=