mirror of
https://github.com/curl/curl.git
synced 2026-04-25 11:42:18 +03:00
After this patch there is no more double/multiple compile of the same libtest source under a different libtest ID. Each libtest is compiled once, and changing behavior at runtime based on test ID. - drop recently added physical clones for two prevously multi-compiled tests: - merge lib587 into lib554 again, branch at runtime. - merge lib645 into lib643 again, branch at runtime. - replace existing dynamic branching to use `testnum` instead of a manually rolled `testno` based on an extra command-line argument. lib1571, lib1576. - mk-bundle.pl: stop defining `LIB*` macros. No longer used. - libtests: drop all `LIB*_C` guards. - Make these tests branch at runtime, stop building copies: - lib585, based on lib500 - lib565, based on lib510 - lib529, based on lib525 - lib527, lib532, based on lib526 - lib545, based on lib544 - lib548, based on lib547 - lib696, based on lib556 - lib584, based on lib589 - lib1539, based on lib1514 - lib1543, based on lib1518 - lib1917, based on lib1916 - lib1946, based on lib1940 - lib671, 672, 673, based on lib670 Follow-up to02dd471bbf#17591 Follow-up to6897aeb105#17468 Closes #17598
80 lines
2.2 KiB
Perl
Executable file
80 lines
2.2 KiB
Perl
Executable file
#!/usr/bin/env perl
|
|
#***************************************************************************
|
|
# _ _ ____ _
|
|
# Project ___| | | | _ \| |
|
|
# / __| | | | |_) | |
|
|
# | (__| |_| | _ <| |___
|
|
# \___|\___/|_| \_\_____|
|
|
#
|
|
# Copyright (C) Viktor Szakats
|
|
#
|
|
# This software is licensed as described in the file COPYING, which
|
|
# you should have received as part of this distribution. The terms
|
|
# are also available at https://curl.se/docs/copyright.html.
|
|
#
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
# KIND, either express or implied.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
#
|
|
###########################################################################
|
|
|
|
# Bundle up individual tests into a single binary. The resulting binary can run
|
|
# individual tests by passing their name (without '.c') as the first argument.
|
|
#
|
|
# Usage: mk-bundle.pl [<directory>]
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
my $src_dir = @ARGV ? $ARGV[0] : ".";
|
|
|
|
# Read list of tests
|
|
open my $fh, "<", "$src_dir/Makefile.inc" or die "Cannot open '$src_dir/Makefile.inc': $!";
|
|
|
|
print <<HEADER
|
|
/* !checksrc! disable COPYRIGHT all */
|
|
/* !checksrc! disable INCLUDEDUP all */
|
|
/* !checksrc! disable UNUSEDIGNORE all */
|
|
|
|
#define CURLTESTS_BUNDLED
|
|
#define CURLTESTS_BUNDLED_TEST_H
|
|
#include "first.h"
|
|
HEADER
|
|
;
|
|
|
|
my $tlist = "";
|
|
|
|
while(my $line = <$fh>) {
|
|
chomp $line;
|
|
if($line =~ /([a-z0-9]+)_SOURCES\ =\ ([a-z0-9]+)\.c/) {
|
|
my $name = $1;
|
|
my $src = "$2.c";
|
|
|
|
# Make common symbols unique across test sources
|
|
foreach my $symb ("test", "unit_setup", "unit_stop") {
|
|
print "#undef $symb\n";
|
|
print "#define $symb ${symb}_$name\n";
|
|
}
|
|
|
|
print "#include \"$src\"\n";
|
|
print "\n";
|
|
$tlist .= " {\"$name\", test_$name},\n";
|
|
}
|
|
}
|
|
|
|
close $fh;
|
|
|
|
print <<FOOTER
|
|
static const struct onetest s_tests[] = {
|
|
$tlist};
|
|
|
|
#undef CURLTESTS_BUNDLED_TEST_H
|
|
|
|
#include "first.c"
|
|
FOOTER
|
|
;
|