Ignore:
Timestamp:
Jan 8, 2009, 11:37:12 PM (14 years ago)
Author:
Peter Johansson
Message:

fixes #355 - skipping tests. Added some support in test::Suite to handle the test repo. There is a bool in constructor telling if the tests needs the test repo. test::Suite uses a new script svn_update.sh to check out and update the test repo. This script is used in test_repo.sh as well.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        88autom4te.cache
        99INSTALL
        10 COPYING
        1110aclocal.m4
        1211Makefile
  • trunk/test/test_repo.sh.in

    r736 r744  
    55
    66# Copyright (C) 2007 Jari Häkkinen, Peter Johansson
    7 # Copyright (C) 2008 Peter Johansson
     7# Copyright (C) 2008, 2009 Peter Johansson
    88#
    99# This file is part of svndigest, http://dev.thep.lu.se/svndigest
     
    2424rootdir=@abs_builddir@/toy_project
    2525targetdir=@abs_builddir@/generated_output
    26 repodir=@abs_srcdir@/repo/trunk
    2726
    28 svn update $rootdir > /dev/null;
     27test_repo_found="@test_repo_found@"
     28if test $test_repo_found = "no"; then
     29    exit 77;
     30fi
     31
     32cd @abs_builddir@ && @SHELL@ svn_update.sh;
    2933
    3034if [ ! -d $targetdir ]; then
Note: See TracChangeset for help on using the changeset viewer.