Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
01255f16
Commit
01255f16
authored
Apr 19, 2016
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1138 from kmod/refcounting
Turn on CI for the refcounting branch again
parents
4378ad13
b35206ac
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
18 additions
and
9 deletions
+18
-9
.travis.yml
.travis.yml
+5
-3
CMakeLists.txt
CMakeLists.txt
+2
-1
from_cpython/Include/abstract.h
from_cpython/Include/abstract.h
+1
-1
from_cpython/Lib/test/test_sqlite.py
from_cpython/Lib/test/test_sqlite.py
+0
-1
src/asm_writing/rewriter.cpp
src/asm_writing/rewriter.cpp
+1
-1
src/capi/abstract.cpp
src/capi/abstract.cpp
+1
-1
src/runtime/float.cpp
src/runtime/float.cpp
+0
-1
test/integration/decorator_test.py
test/integration/decorator_test.py
+1
-0
test/integration/django_test.py
test/integration/django_test.py
+1
-0
test/integration/numpy_test.py
test/integration/numpy_test.py
+1
-0
test/integration/pycrypto_test.py
test/integration/pycrypto_test.py
+1
-0
test/integration/pyinotify_test.py
test/integration/pyinotify_test.py
+1
-0
test/integration/pyxl_test.py
test/integration/pyxl_test.py
+1
-0
test/integration/sqlalchemy_smalltest.py
test/integration/sqlalchemy_smalltest.py
+1
-0
test/integration/virtualenv_test.py
test/integration/virtualenv_test.py
+1
-0
No files found.
.travis.yml
View file @
01255f16
...
...
@@ -2,16 +2,18 @@ language: cpp
branches
:
except
:
-
refcounting
#
- refcounting
compiler
:
-
clang
-
gcc
# XXX: temporarily disable
# - gcc
env
:
matrix
:
-
TRAVIS_BUILD_TYPE=Debug CCACHE_DIR=$HOME/.ccache_debug
-
TRAVIS_BUILD_TYPE=Release CCACHE_DIR=$HOME/.ccache_release
# XXX: temporarily disable
# - TRAVIS_BUILD_TYPE=Release CCACHE_DIR=$HOME/.ccache_release
global
:
-
PYSTON_RUN_ARGS=G
...
...
CMakeLists.txt
View file @
01255f16
...
...
@@ -331,7 +331,8 @@ endmacro()
# tests testname directory arguments
add_pyston_test
(
defaults tests --order-by-mtime -t50
)
add_pyston_test
(
force_llvm tests -a=-n -a=-X -t50
)
# XXX: reenable
# add_pyston_test(force_llvm tests -a=-n -a=-X -t50)
if
(
${
CMAKE_BUILD_TYPE
}
STREQUAL
"Release"
)
add_pyston_test
(
max_compilation_tier tests -a=-O -a=-X -t50
)
endif
()
...
...
from_cpython/Include/abstract.h
View file @
01255f16
...
...
@@ -875,7 +875,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
*/
PyAPI_FUNC
(
PyObject
*
)
_PyNumber_ConvertIntegralToInt
(
PyObject
*
integral
,
STOLEN
(
PyObject
*
)
integral
,
const
char
*
error_format
)
PYSTON_NOEXCEPT
;
/*
...
...
from_cpython/Lib/test/test_sqlite.py
View file @
01255f16
# expected: fail
from
test.test_support
import
run_unittest
,
import_module
# Skip test if _sqlite3 module was not built.
...
...
src/asm_writing/rewriter.cpp
View file @
01255f16
...
...
@@ -19,8 +19,8 @@
#include "codegen/unwinding.h"
#include "core/common.h"
#include "core/stats.h"
#include "runtime/types.h"
#include "runtime/objmodel.h"
#include "runtime/types.h"
namespace
pyston
{
...
...
src/capi/abstract.cpp
View file @
01255f16
...
...
@@ -2151,7 +2151,7 @@ extern "C" int PyNumber_CoerceEx(PyObject** pv, PyObject** pw) noexcept {
return
1
;
}
extern
"C"
PyObject
*
_PyNumber_ConvertIntegralToInt
(
PyObject
*
integral
,
const
char
*
error_format
)
noexcept
{
extern
"C"
PyObject
*
_PyNumber_ConvertIntegralToInt
(
STOLEN
(
PyObject
*
)
integral
,
const
char
*
error_format
)
noexcept
{
const
char
*
type_name
;
static
PyObject
*
int_name
=
NULL
;
if
(
int_name
==
NULL
)
{
...
...
src/runtime/float.cpp
View file @
01255f16
...
...
@@ -164,7 +164,6 @@ extern "C" double PyFloat_AsDouble(PyObject* o) noexcept {
}
val
=
static_cast
<
BoxedFloat
*>
(
fo
)
->
d
;
Py_DECREF
(
fo
);
return
val
;
}
...
...
test/integration/decorator_test.py
View file @
01255f16
# expected: reffail
import
os
,
sys
sys
.
path
.
append
(
os
.
path
.
dirname
(
__file__
)
+
"/../lib"
)
...
...
test/integration/django_test.py
View file @
01255f16
# expected: reffail
import
os
import
signal
import
subprocess
...
...
test/integration/numpy_test.py
View file @
01255f16
# expected: reffail
import
os
import
sys
import
subprocess
...
...
test/integration/pycrypto_test.py
View file @
01255f16
# expected: reffail
import
subprocess
,
sys
,
os
,
shutil
,
StringIO
sys
.
path
.
append
(
os
.
path
.
dirname
(
__file__
)
+
"/../lib"
)
import
test_helper
...
...
test/integration/pyinotify_test.py
View file @
01255f16
# expected: reffail
import
os
import
sys
import
subprocess
...
...
test/integration/pyxl_test.py
View file @
01255f16
# expected: reffail
import
os
import
sys
import
subprocess
...
...
test/integration/sqlalchemy_smalltest.py
View file @
01255f16
# expected: reffail
import
gc
import
os
import
sys
...
...
test/integration/virtualenv_test.py
View file @
01255f16
# expected: reffail
import
os
import
sys
import
subprocess
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment