#!/bin/tcsh

# make tests for all VCSs
foreach vcs (rcs cvs svn git)
  ./mktest-$vcs.tcl
  #./mktest-$vcs.tcl --nobranch
  #./mktest-$vcs.tcl --nomess
end

# make a mixed-up one
rm -rf git_rcs_test
cp -r git_test_master git_rcs_test

cp -r rcs_test/RCS git_rcs_test
cp -r rcs_test/Dir1/RCS git_rcs_test/Dir1
cp -r 'rcs_test/Dir 2/RCS' 'git_rcs_test/Dir 2'

