Changeset 1256


Ignore:
Timestamp:
Nov 1, 2010, 5:33:42 AM (13 years ago)
Author:
Peter Johansson
Message:

remove debug output, and let test check that there is messages sent to standard error.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Node.cc

    r1238 r1256  
    112112      os << anchor(href(), name());
    113113    os << "</td>\n";
    114 
    115     std::cerr << "table row: " << path() << std::endl;
    116114
    117115    html_tabletd(os, stats_type, user, LineTypeParser::total);
  • trunk/lib/TinyStats.cc

    r1234 r1256  
    4949  void TinyStats::init(const StatsCollection& sc)
    5050  {
    51     std::cerr << "init\n";
    5251    size_t max_lt = LineTypeParser::total;
    5352    typedef std::map<std::string, Stats*> StatsMap;
     
    5554    for (StatsMap::const_iterator i = stats_map.begin();i!=stats_map.end();++i){
    5655      const std::string& stats_type = i->first;
    57       std::cerr << stats_type << std::endl;
    5856      const Stats& stats = *(i->second);
    5957      std::map<std::string, Vector>& m = data_[stats_type];
     
    6159      for (std::set<std::string>::const_iterator author=stats.authors().begin();
    6260           author != stats.authors().end(); ++author) {
    63         std::cerr << "author: " << *author << std::endl;
    6461        Vector& v = m[*author];
    6562        v.resize(max_lt+1, 0);
  • trunk/test/repo_test.sh

    r1093 r1256  
    2828$mkdir_p $targetdir
    2929SVNDIGEST_run 0 -r $rootdir -t $targetdir --ignore-cache --no-report
     30test -e stderr || exit_fail
     31test -s stderr && exit_fail
    3032
    3133SVNDIGEST_run 0 -r $rootdir -t $targetdir --force
     34test -e stderr || exit_fail
     35test -s stderr && exit_fail
    3236
    3337exit_success;
Note: See TracChangeset for help on using the changeset viewer.