[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v4 01/16] osstest: make built_stash_file store a path_ runvar for each file
And introduce built_stash_debugfile in order the keep the previous behavior of built_stash_file. Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- Osstest/TestSupport.pm | 14 ++++++++++++-- ts-kernel-build | 4 ++-- ts-xen-build | 8 ++++---- 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/Osstest/TestSupport.pm b/Osstest/TestSupport.pm index 6e19b28a..83f24005 100644 --- a/Osstest/TestSupport.pm +++ b/Osstest/TestSupport.pm @@ -85,7 +85,7 @@ BEGIN { get_stashed open_unique_stashfile compress_stashed dir_identify_vcs build_url_vcs build_clone - built_stash built_stash_file + built_stash built_stash_file built_stash_debugfile built_compress_stashed hg_dir_revision git_dir_revision vcs_dir_revision store_revision store_vcs_revision @@ -1495,7 +1495,7 @@ END store_runvar("path_$item", $stashleaf); } -sub built_stash_file ($$$$;$) { +sub built_stash_debugfile ($$$$;$) { my ($ho, $builddir, $item, $fname, $optional) = @_; my $build= "build"; my $stashleaf= "$build/$item"; @@ -1508,6 +1508,16 @@ sub built_stash_file ($$$$;$) { "$stash/$stashleaf"); } +sub built_stash_file ($$$$;$) { + my ($ho, $builddir, $item, $fname, $optional) = @_; + my $build= "build"; + my $stashleaf= "$build/$item"; + + built_stash_debugfile($ho, $builddir, $item, $fname, $optional); + store_runvar("path_$item", $stashleaf); +} + + sub built_compress_stashed($) { my ($path) = @_; compress_stashed("build/$path"); diff --git a/ts-kernel-build b/ts-kernel-build index 94e67a47..5b87f5a7 100755 --- a/ts-kernel-build +++ b/ts-kernel-build @@ -438,9 +438,9 @@ if ($r{tree_linuxfirmware}) { fwinstall(); } built_stash($ho, $builddir, 'dist', 'kerndist'); -built_stash_file($ho, $builddir, 'vmlinux', 'linux/vmlinux'); +built_stash_debugfile($ho, $builddir, 'vmlinux', 'linux/vmlinux'); built_compress_stashed('vmlinux'); -built_stash_file($ho, $builddir, 'config', 'linux/.config'); +built_stash_debugfile($ho, $builddir, 'config', 'linux/.config'); sub enable_xen_config () { return <<'END'; diff --git a/ts-xen-build b/ts-xen-build index 097ac0a5..3a4bcfa3 100755 --- a/ts-xen-build +++ b/ts-xen-build @@ -232,10 +232,10 @@ sub stash () { } built_stash($ho, $builddir, "xen/dist/xenlpt", "xenlptdist") if $enable_livepatch; - built_stash_file($ho, $builddir, "xen-syms", "xen/xen/xen-syms", 1); - built_stash_file($ho, $builddir, "xen-config", "xen/.config", 1); - built_stash_file($ho, $builddir, "xen-hv-config", "xen/xen/.config", 1); - built_stash_file($ho, $builddir, "seabios-config", + built_stash_debugfile($ho, $builddir, "xen-syms", "xen/xen/xen-syms", 1); + built_stash_debugfile($ho, $builddir, "xen-config", "xen/.config", 1); + built_stash_debugfile($ho, $builddir, "xen-hv-config", "xen/xen/.config", 1); + built_stash_debugfile($ho, $builddir, "seabios-config", "xen/tools/firmware/seabios-dir-remote/.config", 1); built_compress_stashed("xen-syms"); } -- 2.11.0 (Apple Git-81) _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |