[SCM] GiNaC -- a C++ library for symbolic computations branch, master, updated. release_1-4-0-698-gf8a7b294
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GiNaC -- a C++ library for symbolic computations". The branch, master has been updated via f8a7b29478ddd62ed8345dc8aa332fc083260821 (commit) from 13905769fe865764a271f0e2aeb22f422e1289d7 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit f8a7b29478ddd62ed8345dc8aa332fc083260821 Author: Richard Kreckel <kreckel@ginac.de> Date: Mon Oct 12 20:42:49 2020 +0200 Rename test suite files... ...to match any of the three types: exam* test result for specific input (like a pupil's exam) check* test coherence of results among each other, for random input time* measure run-time All tests are still there, but maybe elsewhere: * rename match_bug.cpp => exam_match.cpp * rename heur_gcd_bug.cpp => exam_heur_gcd.cpp * rename bugme_chinrem_gcd.cpp => exam_chinrem_gcd.cpp * rename parser_bugs.cpp => exam_parser.cpp * rename exam_cra.cpp => check_cra.cpp * include numeric_archive.cpp => exam_archive.cpp * include pgcd_infinite_loop.cpp => exam_pgcd.cpp * include pgcd_relatively_prime_bug.cpp => exam_pgcd.cpp These two have been deleted, since memory leaks are best looked for using tools on real programs on a regular basis (they were also not automatically executed): * delete parser_memleak.cpp * delete mul_eval_memleak.cpp ----------------------------------------------------------------------- Summary of changes: check/.gitignore | 22 ++-- check/CMakeLists.txt | 15 +-- check/Makefile.am | 56 +++++----- check/{exam_cra.cpp => check_cra.cpp} | 0 check/exam_archive.cpp | 49 ++++++++- ...{bugme_chinrem_gcd.cpp => exam_chinrem_gcd.cpp} | 4 +- check/{heur_gcd_bug.cpp => exam_heur_gcd.cpp} | 4 +- check/{match_bug.cpp => exam_match.cpp} | 4 +- check/{parser_bugs.cpp => exam_parser.cpp} | 44 ++++---- check/exam_pgcd.cpp | 68 ++++++++++++ check/mul_eval_memleak.cpp | 119 --------------------- check/numeric_archive.cpp | 68 ------------ check/parser_memleak.cpp | 57 ---------- check/pgcd_infinite_loop.cpp | 41 ------- check/pgcd_relatively_prime_bug.cpp | 31 ------ 15 files changed, 183 insertions(+), 399 deletions(-) rename check/{exam_cra.cpp => check_cra.cpp} (100%) rename check/{bugme_chinrem_gcd.cpp => exam_chinrem_gcd.cpp} (98%) rename check/{heur_gcd_bug.cpp => exam_heur_gcd.cpp} (93%) rename check/{match_bug.cpp => exam_match.cpp} (97%) rename check/{parser_bugs.cpp => exam_parser.cpp} (73%) create mode 100644 check/exam_pgcd.cpp delete mode 100644 check/mul_eval_memleak.cpp delete mode 100644 check/numeric_archive.cpp delete mode 100644 check/parser_memleak.cpp delete mode 100644 check/pgcd_infinite_loop.cpp delete mode 100644 check/pgcd_relatively_prime_bug.cpp hooks/post-receive -- GiNaC -- a C++ library for symbolic computations
participants (1)
-
Richard B. Kreckel