From cf7792af6b7ec467a16d87649d83d26eb5c30292505ec07740e60491e7d14a3c Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Fri, 16 Jan 2009 00:54:25 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemtap?expand=0&rev=35 --- systemtap-tcl-quote-fix.diff | 10 ++++++++++ systemtap.changes | 5 +++++ systemtap.spec | 6 +++++- 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 systemtap-tcl-quote-fix.diff diff --git a/systemtap-tcl-quote-fix.diff b/systemtap-tcl-quote-fix.diff new file mode 100644 index 0000000..2b021b0 --- /dev/null +++ b/systemtap-tcl-quote-fix.diff @@ -0,0 +1,10 @@ +--- src/testsuite/systemtap.examples/general/para-callgraph.meta.orig 2008-12-23 11:42:13.000000000 +0530 ++++ src/testsuite/systemtap.examples/general/para-callgraph.meta 2008-12-23 12:04:33.000000000 +0530 +@@ -3,5 +3,5 @@ name: para-callgraph.stp + keywords: trace callgraph + subsystem: general + description: Print a timed per-thread callgraph, complete with function parameters and return values. The first parameter names the function probe points to trace. The optional second parameter names the probe points for trigger functions, which acts to enable tracing for only those functions that occur while the current thread is nested within the trigger. +-test_check: stap -p4 para-callgraph.stp 'kernel.function("*@fs/proc*.c")' 'kernel.function("sys_read")' +-test_installcheck: stap para-callgraph.stp 'kernel.function("*@fs/proc*.c")' 'kernel.function("sys_read")' -c 'cat /proc/sys/vm/*' ++test_check: stap -p4 para-callgraph.stp kernel.function("*@fs/proc*.c") kernel.function("sys_read") ++test_installcheck: stap para-callgraph.stp kernel.function("*@fs/proc*.c") kernel.function("sys_read") -c "cat /proc/sys/vm/*" diff --git a/systemtap.changes b/systemtap.changes index be67ff8..556e6f5 100644 --- a/systemtap.changes +++ b/systemtap.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Jan 15 08:22:24 CET 2009 - tiwai@suse.de + +- Fix quoting in Tcl scripts (bnc#461588) + ------------------------------------------------------------------- Mon Jan 12 12:55:06 CET 2009 - tiwai@suse.de diff --git a/systemtap.spec b/systemtap.spec index d9e5922..5189303 100644 --- a/systemtap.spec +++ b/systemtap.spec @@ -25,7 +25,7 @@ BuildRequires: latex2html %define package_version 20080906 License: GPL v2 or later Version: 0.7.1 -Release: 31 +Release: 32 Summary: Instrumentation System Group: Development/Tools/Debuggers Url: http://sourceware.org/systemtap/ @@ -42,6 +42,7 @@ Patch7: systemtap-netcat-fix2.diff Patch8: systemtap-2.6.28-fixes.diff Patch9: systemtap-use-send_signal.diff Patch10: systemtap-tcl-send_log-syntax-fix.diff +Patch11: systemtap-tcl-quote-fix.diff Requires: libebl1 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -72,6 +73,7 @@ Authors: %patch8 %patch9 -p1 %patch10 +%patch11 -p1 %build autoreconf -fi @@ -100,6 +102,8 @@ rm -rf ${RPM_BUILD_ROOT} %dir %attr(0755,root,root) /var/cache/systemtap %changelog +* Thu Jan 15 2009 tiwai@suse.de +- Fix quoting in Tcl scripts (bnc#461588) * Mon Jan 12 2009 tiwai@suse.de - Fix syntax errors with Tcl send_log (bnc#460886) * Thu Dec 18 2008 tiwai@suse.de