From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26738 invoked by alias); 12 Jun 2009 20:46:34 -0000 Received: (qmail 26714 invoked by uid 9112); 12 Jun 2009 20:46:33 -0000 Date: Fri, 12 Jun 2009 20:46:00 -0000 Message-ID: <20090612204633.26703.qmail@sourceware.org> From: mark@sourceware.org To: systemtap-cvs@sourceware.org Subject: [SCM] systemtap: system-wide probe/trace tool branch, master, updated. release-0.9.8-3-g6a7dc7d X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 8fb430a7eeb394d759fe792198d28aeab348f048 X-Git-Newrev: 6a7dc7d9c3df7d5d722f0702a0a0c8d55591006e Mailing-List: contact systemtap-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-cvs-owner@sourceware.org List-Archive: Reply-To: systemtap@sourceware.org X-SW-Source: 2009-q2/txt/msg00309.txt.bz2 This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "systemtap: system-wide probe/trace tool". The branch, master has been updated via 6a7dc7d9c3df7d5d722f0702a0a0c8d55591006e (commit) from 8fb430a7eeb394d759fe792198d28aeab348f048 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6a7dc7d9c3df7d5d722f0702a0a0c8d55591006e Author: Mark Wielaard Date: Fri Jun 12 22:37:11 2009 +0200 Add exelib uprobes test framework. Tests uprobes placed in executables and shared libraries on different arches (32-on-64 currently disabled), gcc/g++, optimizations (currently disabled), prelinked libs (currently disabled), seperate libs/exe debuginfo and pie executables. * testsuite/systemtap.base/uprobes_exe.c: Moved to... * testsuite/systemtap.exelib/uprobes_exe.c: From systemtap.base. * testsuite/systemtap.base/uprobes_lib.c: Moved to... * testsuite/systemtap.exelib/uprobes_lib.c: From systemtap.base. * testsuite/systemtap.base/uprobes_lib.exp: Rewritten as... * testsuite/systemtap.exelib/lib.tcl: From uprobes_lib.exp. * testsuite/systemtap.base/uprobes_lib.stp: Rewritten as... * testsuite/systemtap.exelib/lib.stp: From uprobes_lib.stp. * testsuite/systemtap.base/uprobes_uname.exp: Rewritten as... * testsuite/systemtap.exelib/uname.tcl: From uprobes_uname.exp. * testsuite/systemtap.base/uprobes_uname.stp: Rewritten as... * testsuite/systemtap.exelib/uname.stp: From uprobes_uname.stp. * testsuite/systemtap.base/uprobes_ustack.exp: Rewritten as... * testsuite/systemtap.exelib/ustack.tcl: From uprobes_ustack.exp. * testsuite/systemtap.base/uprobes_ustack.stp: Rewritten as... * testsuite/systemtap.exelib/ustack.stp: From uprobes_ustack.stp. * testsuite/systemtap.exelib/exelib.exp: New exelib uprobes framework. * testsuite/systemtap.exelib/cleanup.tcl: New file. ----------------------------------------------------------------------- Summary of changes: testsuite/systemtap.base/uprobes_lib.exp | 46 ------ testsuite/systemtap.base/uprobes_lib.stp | 15 -- testsuite/systemtap.base/uprobes_uname.exp | 46 ------ testsuite/systemtap.base/uprobes_uname.stp | 7 - testsuite/systemtap.base/uprobes_ustack.exp | 97 ------------ testsuite/systemtap.exelib/cleanup.tcl | 3 + testsuite/systemtap.exelib/exelib.exp | 164 ++++++++++++++++++++ testsuite/systemtap.exelib/lib.stp | 18 ++ testsuite/systemtap.exelib/lib.tcl | 13 ++ testsuite/systemtap.exelib/uname.stp | 10 ++ testsuite/systemtap.exelib/uname.tcl | 13 ++ .../uprobes_exe.c | 0 .../uprobes_lib.c | 0 .../ustack.stp} | 5 +- testsuite/systemtap.exelib/ustack.tcl | 79 ++++++++++ 15 files changed, 303 insertions(+), 213 deletions(-) delete mode 100644 testsuite/systemtap.base/uprobes_lib.exp delete mode 100644 testsuite/systemtap.base/uprobes_lib.stp delete mode 100644 testsuite/systemtap.base/uprobes_uname.exp delete mode 100644 testsuite/systemtap.base/uprobes_uname.stp delete mode 100644 testsuite/systemtap.base/uprobes_ustack.exp create mode 100644 testsuite/systemtap.exelib/cleanup.tcl create mode 100644 testsuite/systemtap.exelib/exelib.exp create mode 100644 testsuite/systemtap.exelib/lib.stp create mode 100644 testsuite/systemtap.exelib/lib.tcl create mode 100644 testsuite/systemtap.exelib/uname.stp create mode 100644 testsuite/systemtap.exelib/uname.tcl rename testsuite/{systemtap.base => systemtap.exelib}/uprobes_exe.c (100%) rename testsuite/{systemtap.base => systemtap.exelib}/uprobes_lib.c (100%) rename testsuite/{systemtap.base/uprobes_ustack.stp => systemtap.exelib/ustack.stp} (80%) create mode 100644 testsuite/systemtap.exelib/ustack.tcl hooks/post-receive -- systemtap: system-wide probe/trace tool