summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Borg <martin.borg@enea.com>2016-02-25 16:08:04 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-28 11:33:03 +0000
commit5f82d17ac63f6d5b55f7b8d019c239620ab54596 (patch)
treef973ef675bf491b2db9da032ec00c54ea4fa8893
parentb41862d33488d77f3b7c1e897490ea5cb2a35f67 (diff)
downloadpoky-5f82d17ac63f6d5b55f7b8d019c239620ab54596.tar.gz
automake: set test-driver path relative to top_builddir
automake offers auxiliary tools and is capable to install and prepare the setup for those. test-driver, a log driver used by parallel testsuite harness in ptests, is one of those tools. By default it looks that automake prepare environment for testing relative $top_srcdir. But in Yocto following changed: - build folder was separated - $top_srcdir is not anymore defined as relative path, now can be relative or absolute So now in Yocto the Makefile from src/tests contains absolute path of $top_srcdir for test-driver which is an unexisting path at runtime. We need to have relative path for test-driver in Makefile to work on target. $top_builddir can guarantee this path. Originally submitted by Adrian Calianu <adrian.calianu@enea.com> (From OE-Core rev: e9db0ae11d95f3c375b27d5c10606efd8b568fbf) Signed-off-by: Martin Borg <martin.borg@enea.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/automake/automake/new_rt_path_for_test-driver.patch36
-rw-r--r--meta/recipes-devtools/automake/automake_1.15.bb3
2 files changed, 38 insertions, 1 deletions
diff --git a/meta/recipes-devtools/automake/automake/new_rt_path_for_test-driver.patch b/meta/recipes-devtools/automake/automake/new_rt_path_for_test-driver.patch
new file mode 100644
index 0000000000..2c6594f523
--- /dev/null
+++ b/meta/recipes-devtools/automake/automake/new_rt_path_for_test-driver.patch
@@ -0,0 +1,36 @@
1Set relative to top_builddir path in Makefile to access test-driver
2
3Signed-off-by: Adrian Calianu <adrian.calianu@enea.com>
4Upstream-Status: Pending
5Bug-Report: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=19042
6
7--- a/bin/automake.in
8+++ b/bin/automake.in
9@@ -272,6 +272,9 @@
10 # $AM_CONFIG_AUX_DIR is prefixed with $(top_srcdir), so it can be used
11 # in Makefiles.
12 my $am_config_aux_dir = '';
13+# Directory used at runtime like running test-driver that should not
14+# depend on $(top_srcdir)
15+my $am_config_rt_aux_dir = '';
16
17 # Directory to search for AC_LIBSOURCE files, as set by AC_CONFIG_LIBOBJ_DIR
18 # in configure.ac.
19@@ -4700,7 +4703,7 @@
20 {
21 require_conf_file ("parallel-tests", FOREIGN, 'test-driver');
22 define_variable ("${pfx}LOG_DRIVER",
23- "\$(SHELL) $am_config_aux_dir/test-driver",
24+ "\$(SHELL) $am_config_rt_aux_dir/test-driver",
25 INTERNAL);
26 }
27 my $driver = '$(' . $pfx . 'LOG_DRIVER)';
28@@ -7284,6 +7287,10 @@
29 $am_config_aux_dir =
30 '$(top_srcdir)' . ($config_aux_dir eq '.' ? "" : "/$config_aux_dir");
31 $am_config_aux_dir =~ s,/*$,,;
32+
33+ $am_config_rt_aux_dir =
34+ '$(top_builddir)' . ($config_aux_dir eq '.' ? "" : "/$config_aux_dir");
35+ $am_config_rt_aux_dir =~ s,/*$,,;
36 }
diff --git a/meta/recipes-devtools/automake/automake_1.15.bb b/meta/recipes-devtools/automake/automake_1.15.bb
index e3cb85b41a..85494b4af0 100644
--- a/meta/recipes-devtools/automake/automake_1.15.bb
+++ b/meta/recipes-devtools/automake/automake_1.15.bb
@@ -21,7 +21,8 @@ RDEPENDS_${PN}_class-native = "autoconf-native hostperl-runtime-native"
21SRC_URI += " file://python-libdir.patch \ 21SRC_URI += " file://python-libdir.patch \
22 file://py-compile-compile-only-optimized-byte-code.patch \ 22 file://py-compile-compile-only-optimized-byte-code.patch \
23 file://buildtest.patch \ 23 file://buildtest.patch \
24 file://performance.patch" 24 file://performance.patch \
25 file://new_rt_path_for_test-driver.patch"
25 26
26SRC_URI[md5sum] = "716946a105ca228ab545fc37a70df3a3" 27SRC_URI[md5sum] = "716946a105ca228ab545fc37a70df3a3"
27SRC_URI[sha256sum] = "7946e945a96e28152ba5a6beb0625ca715c6e32ac55f2e353ef54def0c8ed924" 28SRC_URI[sha256sum] = "7946e945a96e28152ba5a6beb0625ca715c6e32ac55f2e353ef54def0c8ed924"