mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-28 14:15:19 -04:00
9 lines
298 B
Bash
Executable file
9 lines
298 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
# author: Ole Schuett
|
|
|
|
./tools/conventions/analyze_gfortran_ast.py ./build/*.ast > ast.issues
|
|
./tools/conventions/analyze_gfortran_warnings.py ./build/*.warn > warn.issues
|
|
./tools/conventions/summarize_issues.py --suppressions=./tools/conventions/conventions.supp ./*.issues
|
|
|
|
# EOF
|