From de3fbe3e8d4dd2a89f7755906d76055784c437cc Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Fri, 13 May 2011 10:21:43 +0300 Subject: Drop gnulib. * bootstrap: Rewrite. * bootstrap.conf: Remove. * configure.ac: Remove gl_EARLY/gl_INIT * src/backup.c: New file. * src/txtacc.c (txtacc_finish): Make sure a new entry is appended only once to the list. * (all sources): Use grecs memory allocation functions. * src/wydawca.h" Include fnmatch.h and regex.h (backup_type): New enum. (simple_backup_suffix): New extern. (find_backup_file_name): New proto. * tests/bkupname.c: New file. * tests/backup00.at: New file. * tests/backup01.at: New file. * tests/backup02.at: New file. * tests/backup03.at: New file. * tests/Makefile.am: Add new tests. * tests/testsuite.at: Add new tests. * grecs: Update. --- tests/backup03.at | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 tests/backup03.at (limited to 'tests/backup03.at') diff --git a/tests/backup03.at b/tests/backup03.at new file mode 100644 index 0000000..947c145 --- /dev/null +++ b/tests/backup03.at @@ -0,0 +1,41 @@ +# This file is part of wydawca testsuite -*- Autotest -*- +# Copyright (C) 2009, 2010 Sergey Poznyakoff +# +# Wydawca is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# Wydawca is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Wydawca. If not, see . + +AT_SETUP(numbered existing backups) +AT_KEYWORDS([backup backup03 numbered_existing_backups]) + +AT_CHECK([bkupname -existing a], +[0], +[a~ +]) + +AT_CHECK([ +touch a.~1~ +bkupname -existing a +], +[0], +[a.~2~ +]) + +AT_CHECK([ +touch a.~99~ +bkupname -existing a +], +[0], +[a.~100~ +]) + +AT_CLEANUP -- cgit v1.2.1