Skip to content

Commit

Permalink
Enabled page heap verification (#4186)
Browse files Browse the repository at this point in the history
Enabled page heap verification
  • Loading branch information
hugovk committed Nov 6, 2019
2 parents f4dbc0a + 47df9c2 commit ce8c944
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .appveyor.yml
Expand Up @@ -85,6 +85,7 @@ build_script:
test_script:
- cd c:\pillow
- '%PYTHON%\%PIP_DIR%\pip.exe install pytest pytest-cov'
- c:\"Program Files (x86)"\"Windows Kits"\10\Debuggers\x86\gflags.exe /p /enable %PYTHON%\%EXECUTABLE%
- '%PYTHON%\%EXECUTABLE% -m pytest -vx --cov PIL --cov-report term --cov-report xml Tests'
#- '%PYTHON%\%EXECUTABLE% test-installed.py -v -s %TEST_OPTIONS%' TODO TEST_OPTIONS with pytest?

Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/test-windows.yml
Expand Up @@ -339,6 +339,13 @@ jobs:
%PYTHON%\python.exe selftest.py --installed
shell: cmd

# failing with PyPy3
- name: Enable heap verification
if: "!contains(matrix.python-version, 'pypy')"
run: |
c:\"Program Files (x86)"\"Windows Kits"\10\Debuggers\x86\gflags.exe /p /enable %PYTHON%\python.exe
shell: cmd

- name: Test Pillow
run: |
set PYTHON=%pythonLocation%
Expand Down

0 comments on commit ce8c944

Please sign in to comment.