Browse Source
I'm no longer running the Git smoke testing service at smoke.git.nix.is due to Smolder being a fragile piece of software not having time to follow through on making it easy for third parties to run and submit their own smoke tests. So remove the support in Git for sending smoke tests to smoke.git.nix.is, it's still easy to modify the test suite to submit smokes somewhere else. This reverts the following commits: Revert "t/README: Add SMOKE_{COMMENT,TAGS}= to smoke_report target" --mainte38efac87d
Revert "t/README: Document the Smoke testing" --d15e9ebc5c
Revert "t/Makefile: Create test-results dir for smoke target" --617344d77b
Revert "tests: Infrastructure for Git smoke testing" --b6b84d1b74
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Ævar Arnfjörð Bjarmason
13 years ago
committed by
Junio C Hamano
3 changed files with 1 additions and 133 deletions
@ -1,21 +0,0 @@
@@ -1,21 +0,0 @@
|
||||
#!/usr/bin/perl |
||||
use strict; |
||||
use warnings; |
||||
use Getopt::Long (); |
||||
use TAP::Harness::Archive; |
||||
|
||||
Getopt::Long::Parser->new( |
||||
config => [ qw/ pass_through / ], |
||||
)->getoptions( |
||||
'jobs:1' => \(my $jobs = $ENV{TEST_JOBS}), |
||||
'archive=s' => \my $archive, |
||||
) or die "$0: Couldn't getoptions()"; |
||||
|
||||
TAP::Harness::Archive->new({ |
||||
jobs => $jobs, |
||||
archive => $archive, |
||||
($ENV{GIT_TEST_OPTS} |
||||
? (test_args => [ split /\s+/, $ENV{GIT_TEST_OPTS} ]) |
||||
: ()), |
||||
extra_properties => {}, |
||||
})->runtests(@ARGV); |
Loading…
Reference in new issue