input-types.t: don't litter ./tests/
[?]
Feb 24, 2021, 2:42 AM
NYLYQIFHMCLACHQU3LGQCKTVIGBGOUBTGETNFWDKQCCZGDLMFO7ACDependencies
- [2]
HRBL4HYRinput-types: use is() for test comparisons - [3]
A43SLRSHFix handling of IPC::Run::run exit status - [4]
ZTYKNDOLMove tests for SCM inputs in to its own .t - [5]
QIW2WZKWFix indentation - [6]
VI32YSGAI should test first - [7]
V2ALOFRRFix the test - [8]
HE3GX5IPOptimize fetch-git. - [9]
3RL7VFKEAdd tests for "git describe --long". - [*]
HX4QYOYAadd first evaluations tests
Change contents
- replacement in tests/input-types.t at line 15
my $jobsBaseUri = "file://".getcwd;my $testdir = getcwd;my $scratchdir = "$datadir/scratch";mkdir $scratchdir;my $jobsBaseUri = "file://".$scratchdir; - replacement in tests/input-types.t at line 27
update => getcwd . "/jobs/svn-update.sh"update => $testdir . "/jobs/svn-update.sh" - replacement in tests/input-types.t at line 34
update => getcwd . "/jobs/svn-checkout-update.sh"update => $testdir . "/jobs/svn-checkout-update.sh" - replacement in tests/input-types.t at line 41
update => getcwd . "/jobs/git-update.sh"update => $testdir . "/jobs/git-update.sh" - replacement in tests/input-types.t at line 48
update => getcwd . "/jobs/git-rev-update.sh"update => $testdir . "/jobs/git-rev-update.sh" - replacement in tests/input-types.t at line 55
update => getcwd . "/jobs/git-update.sh"update => $testdir . "/jobs/git-update.sh" - replacement in tests/input-types.t at line 62
update => getcwd . "/jobs/bzr-update.sh"update => $testdir . "/jobs/bzr-update.sh" - replacement in tests/input-types.t at line 69
update => getcwd . "/jobs/bzr-checkout-update.sh"update => $testdir . "/jobs/bzr-checkout-update.sh" - replacement in tests/input-types.t at line 76
update => getcwd . "/jobs/hg-update.sh"update => $testdir . "/jobs/hg-update.sh" - replacement in tests/input-types.t at line 83
update => getcwd . "/jobs/darcs-update.sh"update => $testdir . "/jobs/darcs-update.sh" - replacement in tests/input-types.t at line 99
my ($loop, $updated) = updateRepository($scmName, $update);my ($loop, $updated) = updateRepository($scmName, $update, $scratchdir); - replacement in tests/input-types.t at line 116
($loop, $updated) = updateRepository($scmName, $update, getcwd . "/$scmName-repo/");($loop, $updated) = updateRepository($scmName, $update, $scratchdir); - replacement in tests/lib/Setup.pm at line 118
my ($scm, $update) = @_;my ($scm, $update, $scratchdir) = @_;my $curdir = getcwd;chdir "$scratchdir"; - edit in tests/lib/Setup.pm at line 122
chdir "$curdir";