minor tweaks

This commit is contained in:
Axel Kohlmeyer
2021-04-24 07:21:29 -04:00
parent 66f690004d
commit e6f57cdf2c
2 changed files with 4 additions and 1 deletions

View File

@ -257,7 +257,7 @@ TEST_F(FileOperationsTest, write_data)
command("pair_coeff * *");
command("mass * 1.0");
command("reset_timestep 333");
command("write_data noinit.data");
command("write_data noinit.data noinit");
command("write_data nocoeff.data nocoeff");
command("run 0 post no");
command("write_data test.data");
@ -283,6 +283,7 @@ TEST_F(FileOperationsTest, write_data)
TEST_FAILURE(".*ERROR: Illegal write_data command.*", command("write_data"););
TEST_FAILURE(".*ERROR: Illegal write_data command.*", command("write_data test.data xxxx"););
TEST_FAILURE(".*ERROR: Illegal write_data command.*", command("write_data test.data pair xx"););
TEST_FAILURE(".*ERROR on proc 0: Cannot open data file some_crazy_dir/test.data:"
" No such file or directory.*",
command("write_data some_crazy_dir/test.data"););