Adding a check for license headers to AUTOTEST

This commit is contained in:
Rob Falgout 2019-09-27 10:15:04 -07:00
parent 97404be515
commit 5851cb80af
3 changed files with 17 additions and 0 deletions

View File

@ -38,6 +38,11 @@ shift
# Organizing the tests from "fast" to "slow"
# Check license header info
( cd $src_dir; make distclean )
./test.sh check-license.sh $src_dir/..
mv -f check-license.??? $output_dir
# Check for 'int', 'double', and 'MPI_'
./test.sh check-int.sh $src_dir
mv -f check-int.??? $output_dir

View File

@ -1,3 +1,9 @@
#!/bin/sh
# Copyright 1998-2019 Lawrence Livermore National Security, LLC and other
# HYPRE Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
#=============================================================================
# struct: Run PFMG RedBlack Gauss-Seidel tests. Nonsymmetric GS.
#=============================================================================

View File

@ -1,3 +1,9 @@
#!/bin/sh
# Copyright 1998-2019 Lawrence Livermore National Security, LLC and other
# HYPRE Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
#=============================================================================
# struct: Run variable diag. PFMG RedBlack Gauss-Seidel tests. Nonsymmetric GS.
#=============================================================================