Skip to content

Commit

Permalink
update CPython test notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Boxiang Sun committed Jul 18, 2016
1 parent 0e5c9b8 commit a0367b9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,13 @@ addons:
- python-dev
- texlive-extra-utils
- libcurl4-openssl-dev
- libxml2-dev
- libxml2-dev
- libxslt1-dev
- libssl-dev
- libtk8.5
- libtcl8.5
- tcl8.6-dev
- tk-dev
- swig

before_install:
Expand Down
4 changes: 2 additions & 2 deletions from_cpython/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ def tkinkter_ext():
# Hack: Just hardcode the includes dir and tcl/tk lib dir like our cffi ext.
# May want something more robust later.
tcl_inc = ['/usr/include/tcl']
tcl_lib = "tcl8.6"
tk_lib = "tk8.6"
tcl_lib = "tcl8.5"
tk_lib = "tk8.5"

ext.include_dirs.extend(tcl_inc)
ext.libraries.append(tcl_lib)
Expand Down
2 changes: 0 additions & 2 deletions test/CPYTHON_TEST_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ test_bz2 leaks
test_capi [unknown]
test_cd [unknown]
test_cfgparser works when run from inside the from_cpython dir
test_cgi leaks
test_class needs ellipsis
test_cl [unknown]
test_cmd_line_script [unknown]
Expand Down Expand Up @@ -139,7 +138,6 @@ test_pydoc [unknown]
test_random long("invalid number")
test_repr complex.__hash__; some unknown issues
test_resource fails on travis-ci: setrlimit RLIMIT_CPU not allowed to raise maximum limit
test_richcmp PyObject_Not
test_runpy [unknown]
test_scope eval of code object from existing function (not currently supported)
test_scriptpackages [unknown]
Expand Down

0 comments on commit a0367b9

Please sign in to comment.