mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-28 15:57:48 +00:00
fb779d2f1e
Move the source code (other than glob) into the "src" subdirectory. Update all scripting and recommendations to support this change. * *.c, *.h, w32/*: Move to src/ * configure.ac, Makefile.am, maintMakefile: Locate new source files. * Basic.mk.template, mk/*: Update for new source file locations. * NEWS, README.DOS.template: Update for new locations. * build.template, build_w32.bat, builddos.bat: Ditto. * po/POTFILES.in: Ditto * tests/run_make_tests.pl, tests/scripts/features/load*: Ditto. * make.1: Move to doc. * mk/VMS.mk: Add support for building on VMS (hopefully). * makefile.vms, prepare_w32.bat: Remove. * SCOPTIONS: Update to define HAVE_CONFIG_H
115 lines
2.8 KiB
Perl
115 lines
2.8 KiB
Perl
# -*-perl-*-
|
|
$description = "Test the load operator.";
|
|
|
|
$details = "Test dynamic loading of modules.";
|
|
|
|
# Don't do anything if this system doesn't support "load"
|
|
exists $FEATURES{load} or return -1;
|
|
|
|
# CONFIG_FLAGS are loaded from config-flags.pm and set by configure
|
|
if (! exists $CONFIG_FLAGS{CC}) {
|
|
$verbose and print "Skipping load test: no CC defined\n";
|
|
return -1;
|
|
}
|
|
|
|
# First build a shared object
|
|
# Provide both a default and non-default load symbol
|
|
|
|
unlink(qw(testload.c testload.so));
|
|
|
|
open(my $F, '> testload.c') or die "open: testload.c: $!\n";
|
|
print $F <<'EOF' ;
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
#include "gnumake.h"
|
|
|
|
int plugin_is_GPL_compatible;
|
|
|
|
int
|
|
testload_gmk_setup (gmk_floc *pos)
|
|
{
|
|
(void)pos;
|
|
gmk_eval ("TESTLOAD = implicit", 0);
|
|
return 1;
|
|
}
|
|
|
|
int
|
|
explicit_setup (gmk_floc *pos)
|
|
{
|
|
(void)pos;
|
|
gmk_eval ("TESTLOAD = explicit", 0);
|
|
return 1;
|
|
}
|
|
EOF
|
|
close($F) or die "close: testload.c: $!\n";
|
|
|
|
# Make sure we can compile
|
|
|
|
my $sobuild = "$CONFIG_FLAGS{CC} ".($srcdir? "-I$srcdir/src":'')." $CONFIG_FLAGS{CPPFLAGS} $CONFIG_FLAGS{CFLAGS} -shared -fPIC $CONFIG_FLAGS{LDFLAGS} -o testload.so testload.c";
|
|
|
|
my $clog = `$sobuild 2>&1`;
|
|
if ($? != 0) {
|
|
$verbose and print "Failed to build testload.so:\n$sobuild\n$_";
|
|
return -1;
|
|
}
|
|
|
|
# TEST 1
|
|
run_make_test(q!
|
|
PRE := $(.LOADED)
|
|
load testload.so
|
|
POST := $(.LOADED)
|
|
all: ; @echo pre=$(PRE) post=$(POST) $(TESTLOAD)
|
|
!,
|
|
'--warn-undefined-variables', "pre= post=testload.so implicit\n");
|
|
|
|
# TEST 2
|
|
# Load using an explicit function
|
|
run_make_test(q!
|
|
PRE := $(.LOADED)
|
|
load ./testload.so(explicit_setup)
|
|
POST := $(.LOADED)
|
|
all: ; @echo pre=$(PRE) post=$(POST) $(TESTLOAD)
|
|
!,
|
|
'', "pre= post=testload.so explicit\n");
|
|
|
|
# TEST 4
|
|
# Check multiple loads
|
|
run_make_test(q!
|
|
PRE := $(.LOADED)
|
|
load ./testload.so
|
|
load testload.so(explicit_setup)
|
|
POST := $(.LOADED)
|
|
all: ; @echo pre=$(PRE) post=$(POST) $(TESTLOAD)
|
|
!,
|
|
'', "pre= post=testload.so implicit\n");
|
|
|
|
# TEST 5
|
|
# Check auto-rebuild of loaded file that's out of date
|
|
utouch(-10, 'testload.so');
|
|
touch('testload.c');
|
|
|
|
run_make_test(q!
|
|
PRE := $(.LOADED)
|
|
load ./testload.so
|
|
POST := $(.LOADED)
|
|
all: ; @echo pre=$(PRE) post=$(POST) $(TESTLOAD)
|
|
testload.so: testload.c ; @echo "rebuilding $@"; !.$sobuild,
|
|
'', "rebuilding testload.so\npre= post=testload.so implicit\n");
|
|
|
|
# TEST 5
|
|
# Check auto-rebuild of loaded file when it doesn't exist
|
|
unlink('testload.so');
|
|
|
|
run_make_test(q!
|
|
PRE := $(.LOADED)
|
|
-load ./testload.so(explicit_setup)
|
|
POST := $(.LOADED)
|
|
all: ; @echo pre=$(PRE) post=$(POST) $(TESTLOAD)
|
|
%.so: %.c ; @echo "rebuilding $@"; !.$sobuild,
|
|
'', "rebuilding testload.so\npre= post=testload.so explicit\n");
|
|
|
|
unlink(qw(testload.c testload.so)) unless $keep;
|
|
|
|
# This tells the test driver that the perl test script executed properly.
|
|
1;
|