Accepting request 456039 from devel:languages:misc
- Collect some informations on the build system for debugging a random error on sockets during test suite OBS-URL: https://build.opensuse.org/request/show/456039 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/clisp?expand=0&rev=41
This commit is contained in:
commit
13e940908f
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
src/clisp-link.in | 2 +-
|
src/clisp-link.in | 2 +-
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
src/lispbibl.d | 4 +++-
|
||||||
|
2 files changed, 4 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
--- src/clisp-link.in
|
--- src/clisp-link.in
|
||||||
+++ src/clisp-link.in 2016-11-29 12:56:40.625559126 +0000
|
+++ src/clisp-link.in 2016-11-29 12:56:40.625559126 +0000
|
||||||
@ -24,3 +25,12 @@
|
|||||||
#endif
|
#endif
|
||||||
/* Use 'uintX' and 'sintX' for Integers with approximately given width
|
/* Use 'uintX' and 'sintX' for Integers with approximately given width
|
||||||
and a minumum of storage space. */
|
and a minumum of storage space. */
|
||||||
|
@@ -11622,7 +11622,7 @@ re-enters the corresponding top-level lo
|
||||||
|
#define pushSTACK(obj) (STACK_(-1) = (obj), STACK skipSTACKop -1)
|
||||||
|
/* Almost equivalent with *--STACK = obj resp. *STACK++ = obj , but
|
||||||
|
Careful: first enter the object into STACK_(-1), THEN modify the STACK! */
|
||||||
|
-#define popSTACK() (STACK skipSTACKop 1, STACK_(-1))
|
||||||
|
+#define popSTACK() ({STACK skipSTACKop 1; STACK_(-1);})
|
||||||
|
#define skipSTACK(n) (STACK skipSTACKop (sintP)(n))
|
||||||
|
|
||||||
|
#if defined(GNU) && defined(M68K) && !defined(NO_ASM) && !defined(WIDE) && defined(STACK_register)
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 10 08:52:25 UTC 2017 - werner@suse.de
|
||||||
|
|
||||||
|
- Collect some informations on the build system for debugging
|
||||||
|
a random error on sockets during test suite
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 19 12:20:06 UTC 2017 - werner@suse.de
|
Thu Jan 19 12:20:06 UTC 2017 - werner@suse.de
|
||||||
|
|
||||||
|
19
clisp.spec
19
clisp.spec
@ -67,6 +67,7 @@ BuildRequires: gdbm-devel
|
|||||||
BuildRequires: gtk2-devel
|
BuildRequires: gtk2-devel
|
||||||
BuildRequires: libglade2-devel
|
BuildRequires: libglade2-devel
|
||||||
BuildRequires: libsigsegv-devel
|
BuildRequires: libsigsegv-devel
|
||||||
|
BuildRequires: net-tools
|
||||||
BuildRequires: openssl-devel
|
BuildRequires: openssl-devel
|
||||||
BuildRequires: pcre-devel
|
BuildRequires: pcre-devel
|
||||||
BuildRequires: postgresql-devel
|
BuildRequires: postgresql-devel
|
||||||
@ -274,13 +275,29 @@ tail -q -s 0.5 -f $SCREENLOG & pid=$!
|
|||||||
#
|
#
|
||||||
# Stop tail
|
# Stop tail
|
||||||
#
|
#
|
||||||
|
sleep 1
|
||||||
kill $pid
|
kill $pid
|
||||||
|
|
||||||
#
|
#
|
||||||
# Check for errors
|
# Check for errors
|
||||||
#
|
#
|
||||||
test -z "$(ls build/tests/*.erg 2>/dev/null)"
|
|
||||||
|
|
||||||
|
check=no
|
||||||
|
for err in build/tests/*.erg
|
||||||
|
do
|
||||||
|
test -e "$err" || break
|
||||||
|
check=yes
|
||||||
|
cat $err
|
||||||
|
done
|
||||||
|
if test $check != no
|
||||||
|
then
|
||||||
|
type -p uname > /dev/null 2>&1 && uname -a || :
|
||||||
|
type -p netstat > /dev/null 2>&1 && netstat -i || :
|
||||||
|
type -p netstat > /dev/null 2>&1 && netstat -x || :
|
||||||
|
type -p ip > /dev/null 2>&1 && ip link || :
|
||||||
|
type -p ss > /dev/null 2>&1 && ss -x || :
|
||||||
|
fi
|
||||||
|
#
|
||||||
%install
|
%install
|
||||||
#
|
#
|
||||||
# Clean
|
# Clean
|
||||||
|
Loading…
Reference in New Issue
Block a user