HomeSort by relevance Sort by last modified time
    Searched refs:patchCommand (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebKitTools/Scripts/webkitperl/VCSUtils_unittest/
generatePatchCommand.pl 40 my ($patchCommand, $isForcing) = VCSUtils::generatePatchCommand($argsHashRef);
42 ok($patchCommand eq "patch -p0", $title);
50 ($patchCommand, $isForcing) = VCSUtils::generatePatchCommand($argsHashRef);
52 ok($patchCommand eq "patch -p0", $title);
59 ($patchCommand, $isForcing) = VCSUtils::generatePatchCommand($argsHashRef);
61 ok($patchCommand eq "patch -p0 --force", $title);
68 ($patchCommand, $isForcing) = VCSUtils::generatePatchCommand($argsHashRef);
70 ok($patchCommand eq "patch -p0 --force", $title);
77 ($patchCommand, $isForcing) = VCSUtils::generatePatchCommand($argsHashRef);
79 ok($patchCommand eq "patch -p0 --reverse", $title)
    [all...]
  /external/webkit/WebKitTools/Scripts/
VCSUtils.pm 719 # Returns ($patchCommand, $isForcing).
759 my $patchCommand = join(" ", "patch -p0", @{$options});
761 return ($patchCommand, $isForcing);
794 my ($patchCommand, $isForcing) = generatePatchCommand($args);
802 open PATCH, "| $patchCommand" or die "Could not call \"$patchCommand\" for file \"$pathRelativeToRoot\": $!";
810 print "Calling \"$patchCommand\" for file \"$pathRelativeToRoot\" returned " .

Completed in 281 milliseconds