Fixed an inconsistency in the cmake test driver build to ensure correct autotests

This commit is contained in:
Rob Falgout 2015-01-22 14:55:28 -08:00
parent 720c043149
commit aa5ec210b6
4 changed files with 17 additions and 11 deletions

View File

@ -93,7 +93,7 @@ make $mopts install
cd $src_dir/test/cmbuild
cmake ..
make $mopts
mv -f ams_driver ij ij_mv new_ij sstruct struct ..
mv -f ij new_ij sstruct struct ams_driver maxwell_unscaled sstruct_fac ij_mv ..
cd $test_dir

View File

@ -44,18 +44,18 @@ the responsible project member before the release is made available to users.
- Update 'config/configure.in' and 'CMakeLists.txt' with release number and
date, then run 'config/bootstrap' and commit changes to the repository.
[]
[rdf 01/22/2015]
- Tag repository with release number: git tag -a V2-8-0b -m "Release 2.8.0b".
Push the tags to the central repository: git push --tags
[]
[rdf 01/22/2015]
- Create release tar files by running the 'tools/mkdist' script (for more
information, do 'mkdist -help'). This can be run from within any directory,
just be sure to use the latest version of the 'mkdist' script.
[]
[rdf 01/22/2015]
- Run the 'AUTOTEST/testdist.sh' script to verify a stable release. For more
information on running this script, do 'testdist.sh -help'. If any of the

View File

@ -51,9 +51,6 @@ endif ()
add_executable (ij ij.c)
target_link_libraries (ij ${HYPRE_LIBS})
add_executable (ij_mv ij_mv.c)
target_link_libraries (ij_mv ${HYPRE_LIBS})
add_executable (new_ij new_ij.c)
target_link_libraries (new_ij ${HYPRE_LIBS})
@ -66,3 +63,12 @@ target_link_libraries (struct ${HYPRE_LIBS})
add_executable (ams_driver ams_driver.c)
target_link_libraries (ams_driver ${HYPRE_LIBS})
add_executable (maxwell_unscaled maxwell_unscaled.c)
target_link_libraries (maxwell_unscaled ${HYPRE_LIBS})
add_executable (sstruct_fac sstruct_fac.c)
target_link_libraries (sstruct_fac ${HYPRE_LIBS})
add_executable (ij_mv ij_mv.c)
target_link_libraries (ij_mv ${HYPRE_LIBS})

View File

@ -65,15 +65,15 @@ BABELLIBFLAGS =\
##################################################################
HYPRE_DRIVERS =\
zboxloop.c\
ij.c\
ij_mv.c\
new_ij.c\
sstruct.c\
sstruct_fac.c\
struct.c\
ams_driver.c\
maxwell_unscaled.c\
ams_driver.c
sstruct_fac.c\
ij_mv.c\
zboxloop.c
HYPRE_BABEL_DRIVERS =\
struct_b.c\