From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9925 invoked by alias); 21 Nov 2011 09:21:32 -0000 Received: (qmail 9895 invoked by uid 9112); 21 Nov 2011 09:21:29 -0000 Date: Mon, 21 Nov 2011 09:21:00 -0000 Message-ID: <20111121092129.9883.qmail@sourceware.org> From: mark@sourceware.org To: systemtap-cvs@sourceware.org Subject: [SCM] systemtap: system-wide probe/trace tool branch, master, updated. release-1.6-429-gf4ec930 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 5261f7ab82a4c5130e86d5ae3e3652515e7c92bc X-Git-Newrev: f4ec9309e70952a6fdf9e34552d26748f54c83d9 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: 2011-q4/txt/msg00138.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 f4ec9309e70952a6fdf9e34552d26748f54c83d9 (commit) via ee59f1abfee2ac14f540c73334c9ca05e51e6a42 (commit) from 5261f7ab82a4c5130e86d5ae3e3652515e7c92bc (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 f4ec9309e70952a6fdf9e34552d26748f54c83d9 Author: Mark Wielaard Date: Sat Nov 19 20:45:49 2011 +0100 Add testsuite/lib/compile_flags.exp and use it in tests. testsuite/lib/compile_flags.exp defines all_compile_flags(), all_compile_flag(INDEX) and all_compile_flag_name(INDEX) which return the number, actual flag and extra test name to use in tests that use target_compile for use space testing. On architectures that support multiple ABIs it will return all combinations of all optimizations (none, -O, -O2) and the ABI flags (-m64, -m32 or -m31). Use in a for loop like: for {set i 0} {$i < [all_compile_flags]} {incr i} { set extra_flag [all_compile_flag $i] # Add to target_compile flags set extra_name [all_compile_flag_name $i] # Add to test pass/fail message ... } commit ee59f1abfee2ac14f540c73334c9ca05e51e6a42 Author: Mark Wielaard Date: Sat Nov 19 19:07:47 2011 +0100 uprobe_stmt_num.exp run the last test, but explicitl kfail PR10454. ----------------------------------------------------------------------- Summary of changes: testsuite/config/unix.exp | 1 + testsuite/lib/compile_flags.exp | 98 ++++++++++++++++++++ testsuite/systemtap.base/cast-scope.exp | 42 +++++---- testsuite/systemtap.base/cast-scope.stp | 2 +- testsuite/systemtap.base/cu-decl.exp | 32 ++++--- testsuite/systemtap.base/cxxclass.exp | 30 ++++--- testsuite/systemtap.base/externalvar.exp | 92 ++++++++++--------- testsuite/systemtap.base/implicitptr.exp | 36 ++++---- testsuite/systemtap.base/inherit.exp | 37 ++++--- testsuite/systemtap.base/inlinedvars.exp | 18 ++-- testsuite/systemtap.base/ptridx.exp | 78 ++++++++-------- .../systemtap.base/unresolved-struct-typedef.exp | 45 +++++---- testsuite/systemtap.base/vta-test.exp | 46 +++------ testsuite/systemtap.context/uprobe_stmt_num.exp | 2 +- testsuite/systemtap.context/usymbols.exp | 45 +++------ 15 files changed, 355 insertions(+), 249 deletions(-) create mode 100644 testsuite/lib/compile_flags.exp hooks/post-receive -- systemtap: system-wide probe/trace tool