1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 15:39:07 +00:00

Run AStyle if it is installed

Also try to install it on AppVeyor
This commit is contained in:
Thom Wiggers 2019-03-05 14:35:19 +01:00
parent 7e9cabdee2
commit ff186b3dd6
No known key found for this signature in database
GPG Key ID: 001BB0A7CE26E363
2 changed files with 13 additions and 8 deletions

View File

@ -12,7 +12,12 @@ environment:
init:
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars%BITS%.bat"
- set PATH="C:\\Python37";%PATH%
- set PATH="C:\\Python37";"C:\\Python37\Scripts";"C:\\tmp\\tools";%PATH%
- mkdir "C:\tmp\tools"
# Download AStyle 3.1: first enable strong crypto in Invoke-WebRequest
- ps: Set-ItemProperty -Path "HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319" -Name 'SchUseStrongCrypto' -Value '1' -Type DWord
- ps: Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319" -Name "SchUseStrongCrypto" -Value '1' -Type DWord
- ps: Invoke-WebRequest -OutFile "C:\tmp\tools\AStyle.exe" "https://rded.nl/pqclean/AStyle.exe"
build_script:
- python -m pip install -r requirements.txt

View File

@ -1,8 +1,8 @@
import os
from glob import glob
import shutil
import unittest
import pqclean
from helpers import run_subprocess, skip_windows
from helpers import run_subprocess
def test_formatting():
@ -11,11 +11,11 @@ def test_formatting():
yield check_format, implementation
@skip_windows(message="This test needs to be amended to work with Windows "
"installations of astyle")
def check_format(implementation: pqclean.Implementation):
cfiles = glob(os.path.join(implementation.path(), '*.c'))
hfiles = glob(os.path.join(implementation.path(), '*.h'))
if shutil.which('astyle') is None:
raise unittest.SkipTest("AStyle is not installed")
cfiles = implementation.cfiles()
hfiles = implementation.hfiles()
run_subprocess(['astyle',
'--dry-run',
'--options=../.astylerc',