Merge pull request #3245 from akohlmey/next_patch_release

Step version strings for the next patch release
This commit is contained in:
Axel Kohlmeyer
2022-05-04 19:57:23 -04:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
.TH LAMMPS "1" "24 March 2022" "2022-3-24"
.TH LAMMPS "1" "4 May 2022" "2022-5-4"
.SH NAME
.B LAMMPS
\- Molecular Dynamics Simulator. Version 24 March 2022

View File

@ -1 +1 @@
#define LAMMPS_VERSION "24 Mar 2022"
#define LAMMPS_VERSION "4 May 2022"

View File

@ -252,7 +252,7 @@ TEST_F(SimpleCommandsTest, ResetTimestep)
TEST_FAILURE(".*ERROR: Illegal reset_timestep .*", command("reset_timestep"););
TEST_FAILURE(".*ERROR: Unknown reset_timestep option 10.*", command("reset_timestep 10 10"););
TEST_FAILURE(".*ERROR: Illegal reset_timestep .*", command("reset_timestep 10 time"););
TEST_FAILURE(".*ERROR: Expected floating .**", command("reset_timestep 10 time xxx"););
TEST_FAILURE(".*ERROR: Expected floating .*", command("reset_timestep 10 time xxx"););
TEST_FAILURE(".*ERROR: Expected integer .*", command("reset_timestep xxx"););
}