Changeset 149 for trunk/test


Ignore:
Timestamp:
Aug 12, 2006, 11:11:46 AM (17 years ago)
Author:
Jari Häkkinen
Message:

Changed svnstat to svndigest.

Location:
trunk/test
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/Makefile.am

    r145 r149  
    55# Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson
    66#
    7 # This file is part of svnstat, http://lev.thep.lu.se/trac/svnstat
     7# This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest
    88#
    9 # svnstat is free software; you can redistribute it and/or modify it
     9# svndigest is free software; you can redistribute it and/or modify it
    1010# under the terms of the GNU General Public License as published by
    1111# the Free Software Foundation; either version 2 of the License, or
    1212# (at your option) any later version.
    1313#
    14 # svnstat is distributed in the hope that it will be useful, but
     14# svndigest is distributed in the hope that it will be useful, but
    1515# WITHOUT ANY WARRANTY; without even the implied warranty of
    1616# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     
    2626check_PROGRAMS = $(TESTS)
    2727
    28 LDADD = @top_srcdir@/lib/libsvnstat.a -L$(APR_PATH)/lib \
     28LDADD = @top_srcdir@/lib/libsvndigest.a -L$(APR_PATH)/lib \
    2929  -lsvn_client-1 -lsvn_diff-1 -lsvn_ra-1 -lsvn_subr-1 -lsvn_wc-1 -lapr-0
    3030
  • trunk/test/directory.cc

    r145 r149  
    44  Copyright (C) 2006 Jari Häkkinen, Peter Johansson
    55
    6   This file is part of svnstat, http://lev.thep.lu.se/trac/svnstat
     6  This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest
    77
    8   svnstat is free software; you can redistribute it and/or modify it
     8  svndigest is free software; you can redistribute it and/or modify it
    99  under the terms of the GNU General Public License as published by
    1010  the Free Software Foundation; either version 2 of the License, or
    1111  (at your option) any later version.
    1212
    13   svnstat is distributed in the hope that it will be useful, but
     13  svndigest is distributed in the hope that it will be useful, but
    1414  WITHOUT ANY WARRANTY; without even the implied warranty of
    1515  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     
    3030  try {
    3131    // create a file structure of a subversion WC
    32     theplu::svnstat::Directory directory(0,"..");
     32    theplu::svndigest::Directory directory(0,"..");
    3333    directory.parse();
    3434  }
  • trunk/test/file.cc

    r145 r149  
    44  Copyright (C) 2006 Jari Häkkinen, Peter Johansson
    55
    6   This file is part of svnstat, http://lev.thep.lu.se/trac/svnstat
     6  This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest
    77
    8   svnstat is free software; you can redistribute it and/or modify it
     8  svndigest is free software; you can redistribute it and/or modify it
    99  under the terms of the GNU General Public License as published by
    1010  the Free Software Foundation; either version 2 of the License, or
    1111  (at your option) any later version.
    1212
    13   svnstat is distributed in the hope that it will be useful, but
     13  svndigest is distributed in the hope that it will be useful, but
    1414  WITHOUT ANY WARRANTY; without even the implied warranty of
    1515  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     
    2929{
    3030  try {
    31     theplu::svnstat::File file(0,"file.cc");
     31    theplu::svndigest::File file(0,"file.cc");
    3232    file.parse();
    3333  }
  • trunk/test/gnuplot_pipe.cc

    r145 r149  
    44  Copyright (C) 2006 Jari Häkkinen
    55
    6   This file is part of svnstat, http://lev.thep.lu.se/trac/svnstat
     6  This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest
    77
    8   svnstat is free software; you can redistribute it and/or modify it
     8  svndigest is free software; you can redistribute it and/or modify it
    99  under the terms of the GNU General Public License as published by
    1010  the Free Software Foundation; either version 2 of the License, or
    1111  (at your option) any later version.
    1212
    13   svnstat is distributed in the hope that it will be useful, but
     13  svndigest is distributed in the hope that it will be useful, but
    1414  WITHOUT ANY WARRANTY; without even the implied warranty of
    1515  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     
    3838  }
    3939
    40   svnstat::Gnuplot gnuplot1;
     40  svndigest::Gnuplot gnuplot1;
    4141  ok|=gnuplot1.command("set output 'test1.png'; set term png ; set title 'sine'");
    4242  ok|=gnuplot1.command("plot sin(x) title 'sine of x' with lines");
    4343
    44   svnstat::Gnuplot gnuplot2;
     44  svndigest::Gnuplot gnuplot2;
    4545  ok|=gnuplot2.command("set output 'test2.png'; set term png");
    4646  ok|=gnuplot2.plot(x);
    4747
    48   svnstat::Gnuplot gnuplot3;
     48  svndigest::Gnuplot gnuplot3;
    4949  ok|=gnuplot3.command("set output 'test3.png'; set term png");
    5050  gnuplot3.linetitle("parabola");
     
    6262  // plot_x and plot_xy). Note, the below example compiles, but will
    6363  // fail at run time if 'filename.data' does not, miraculously, exist.
    64   svnstat::Gnuplot gnuplot4;
     64  svndigest::Gnuplot gnuplot4;
    6565  gnuplot4.command("set output 'test5.png'\nset term png");
    6666  gnuplot4.command("plot 'filename.data' using 1:2 with linespoints");
Note: See TracChangeset for help on using the changeset viewer.