[svk-commit] r3049 - trunk/t/bm
nobody at bestpractical.com
nobody at bestpractical.com
Sat Aug 2 05:30:56 EDT 2008
Author: clsung
Date: Sat Aug 2 05:30:55 2008
New Revision: 3049
Modified:
trunk/t/bm/checkout.t
Log:
- to avoid path space and separator in Win32
- e.g. (C:\Program Files\)
Modified: trunk/t/bm/checkout.t
==============================================================================
--- trunk/t/bm/checkout.t (original)
+++ trunk/t/bm/checkout.t Sat Aug 2 05:30:55 2008
@@ -32,10 +32,10 @@
chdir($copath."/A");
is_output_like ($svk, 'branch', ['--checkout', 'feature/foo', '//mirror/MyProject'],
- qr'Syncing \S+ in \S+A/feature/foo to \d.+');
+ qr'Syncing \S+ in .+A.feature.foo to \d.+');
is_output_like ($svk, 'branch', ['--checkout', 'feature/foo', '//mirror/MyProject', '../B/'],
- qr'Syncing \S+ in \S+B to \d.+');
+ qr'Syncing \S+ in .+B to \d.+');
chdir('../B');
@@ -44,7 +44,7 @@
# swap the order, and co the trunk
is_output_like ($svk, 'branch', ['--checkout', 'trunk', '../C', '//mirror/MyProject'],
- qr'Syncing \S+ in \S+C to \d.+');
+ qr'Syncing \S+ in .+C to \d.+');
chdir('../C');
More information about the svk-commit
mailing list