]> git.pld-linux.org Git - packages/python3.git/commitdiff
- disable test_pydoc and test_telnetlib
authorArtur Frysiak <artur@frysiak.net>
Sun, 23 Aug 2009 21:30:00 +0000 (21:30 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- compile with computed gotos (but disable caller saves optimisation)

Changed files:
    python3.spec -> 1.28

python3.spec

index b6000ffcc43bc9374d8f2f1f4627b4c073733ab4..51a0382311107da247a6444767e1e1c81c6d57cf 100644 (file)
@@ -14,7 +14,7 @@
 # tests which may fail because of builder environment limitations (no /proc or /dev/pts)
 %define                nobuilder_tests test_resource test_openpty test_socket test_nis test_posix test_locale test_pty
 # tests which fail because of some unknown/unresolved reason (this list should be empty)
-%define                broken_tests test_httpservers test_distutils test_cmd_line
+%define                broken_tests test_httpservers test_distutils test_cmd_line test_pydoc test_telnetlib
 
 %define        beta            %{nil}
 
@@ -505,13 +505,14 @@ CPPFLAGS="-I/usr/include/ncursesw"; export CPPFLAGS
        --with-doc-strings \
        --with-fpectl \
        --with-system-ffi \
+       --with-computed-gotos \
        LINKCC='$(PURIFY) $(CXX)' \
        LDSHARED='$(CC) $(CFLAGS) -shared' \
        BLDSHARED='$(CC) $(CFLAGS) -shared' \
        LDFLAGS="%{rpmcflags} %{rpmldflags}"
 
 %{__make} \
-       OPT="%{rpmcflags}" 2>&1 | awk '
+       OPT="%{rpmcflags} -fno-caller-saves" 2>&1 | awk '
 BEGIN { fail = 0; logmsg = ""; }
 {
         if ($0 ~ /\*\*\* WARNING:/) {
This page took 0.230701 seconds and 4 git commands to generate.