run(otherWc, "svn", "co", otherRepoU, ".");
FileUtils.touch(new File(otherWc, "otherfile"));
run(otherWc, "svn", "add", "otherfile");
run(otherWc, "svn", "commit", "--message=init");
WorkflowJob p = r.jenkins.createProject(WorkflowJob.class, "demo");
p.addTrigger(new SCMTrigger(""));
p.setQuietPeriod(3); // so it only does one build
p.setDefinition(new CpsFlowDefinition(
"node {\n" +
" ws {\n" +
" dir('main') {\n" +