summaryrefslogtreecommitdiffstats
path: root/testsuite/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
* Don't try to parallel install partial build-elfutils build in lib-elfutils.Mark Wielaard2010-02-161-1/+0
| | | | | | | | | | | | | | | | | | | The parallel install into lib-elfutils during the build seems to be fragile, so explicitly install the libs with -j1. * Makefile.am (stamp-elfutils): Add -j1 in for dir loop sub make. * Makefile.in: Regenerated. * aclocal.m4: Likewise. * compile: Likewise. * config.in: Likewise. * configure: Likewise. * doc/Makefile.in: Likewise. * doc/SystemTap_Tapset_Reference/Makefile.in: Likewise. * doc/beginners/Makefile.in: Likewise. * grapher/Makefile.in: Likewise. * testsuite/Makefile.in: Likewise. * testsuite/aclocal.m4: Likewise. * testsuite/configure: Likewise.
* Run autoreconfEugeniy Meshcheryakov2010-01-211-1/+2
|
* Move PKGLIBDIR variable set to testsuite/Makefile.am for self-contained tests.William Cohen2010-01-081-1/+1
|
* Incremented version number for release 1.1.David Smith2009-12-211-11/+30
| | | | | | | | | | | | | | | | * NEWS: Set version number. * configure.ac: Incremented version number. * systemtap.spec: Incremented version number and added changelog entry. * testsuite/configure.ac: Ditto. * Makefile.in: Regenerated. * aclocal.m4: Ditto. * configure: Ditto. * doc/Makefile.in: Ditto. * doc/SystemTap_Tapset_Reference/Makefile.in: Ditto. * grapher/Makefile.in: Ditto. * testsuite/Makefile.in: Ditto. * testsuite/aclocal.m4: Ditto. * testsuite/configure: Ditto.
* PR 10889: Reorganize client/server man pages. Document --unprivileged.Dave Brolley2009-12-171-30/+11
|
* Regenerate autotools files using autoreconf to pick up latest Makefile.am ↵Dave Brolley2009-12-011-11/+30
| | | | changes.
* Ensure uprobes/Makefile never returns failure due to setting permissions.Dave Brolley2009-11-231-30/+11
| | | | | Ensure uprobes install directory has group 'stap-server'. Rename igid_in to in_group.
* Fix stapprobes.irq title and add to install listJosh Stone2009-11-101-11/+30
| | | | (And incidentally re-enable quiet builds at the same time...)
* Merge branch 'master' of ssh://sources.redhat.com/git/systemtapDave Brolley2009-11-031-1/+3
|\ | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile.in configure doc/Makefile.in doc/SystemTap_Tapset_Reference/Makefile.in grapher/Makefile.in testsuite/configure
| * reorganize app tests; rewrite tcl as sample of improvementsFrank Ch. Eigler2009-10-311-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * testsuite/configure.ac (--enable-testapps): New option. * testsuite/Makefile.am (TESTAPPS): Pass to dejagnu. * testsuite/systemtap.base/{xulrunner,tcl,mysql,postgres}: Moved under new systemtap.apps/ subdirectory. * testsuite/systemtap.apps/stap-tcl.sh: New file to build tcl. * testsuite/systemtap.apps/stap-tcl.stp: New file to test tcl. * testsuite/systemtap.apps/tcl.exp: New simplified test driver. * dtrace.in: Disable STAP_HAS_SEMAPHORES as they don't work on shlibs yet. * includes/sys/sdt.h (STAP_SEMAPHORE): Include __builtin_expect for unlikely.
* | Infrastructure for new stap-server initscript.Dave Brolley2009-10-201-30/+11
|/
* Version bumps for the 1.0 releaseJosh Stone2009-09-221-11/+30
|
* 2009-09-14 Dave Brolley <brolley@redhat.com>Dave Brolley2009-09-141-30/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * modsign.cxx (init_cert_db_path): Use 'system' call. (sign_module): Renamed to 'main'. This is now an independant program. Check for arguments. Return 1 on error. * buildrun.cxx (modsign.h): Don't #include it. (compile_pass): Don't sign the module. * main.cxx (main): Don't copy the module signature. * cache.cxx (add_to_cache): Don't cache the module signature. * Makefile.am (bin_PROGRAMS): Add stap-sign-module. (stap_SOURCES): Remove modsign.cxx and nsscommon.c. (stap_sign_module_SOURCES): New variable. (stap_sign_module_CPPFLAGS): New variable. (stap_sign_module_LDFLAGS): New variable. (stap_sign_module_LDADD): New variable. * stap-server (initialization): Initialize unprivileged. (parse_options): Handle --unprivileged. (create_response): Call stap-sign-module if --unprivileged was specified. * systemtap.spec: Add stap-sign-module to stap-server. * Makefile.in: Regenerated. * doc/Makefile.in: Regenerated. * doc/SystemTap_Tapset_Reference/Makefile.in: Regenerated. * grapher/Makefile.in: Regenerated. * testsuite/Makefile.in: Regenerated. * aclocal.m4: Likewise. * testsuite/aclocal.m4: Likewise. * configure: Likewise. * testsuite/configure: Likewise.
* elfutils build tweak: run nested configure with bash, add -fgnu89-inlineFrank Ch. Eigler2009-08-181-12/+29
| | | | | * configure.ac: Tweak --with-elfutils nested configure invocation. * rest of auto* files: regenerated with fedora-11 tools
* Do not use plain [] in help string in configure.acEugeniy Meshcheryakov2009-08-071-29/+12
| | | | This confuses Debian's automake.
* Support for presenting multiple graphsTim Moore2009-07-281-11/+29
| | | | | | | | | | | | | | | | | | | | * grapher/Graph.hxx: New file; class for single graph display. * grapher/Graph.cxx: New file. * grapher/GraphData.hxx: Associate title and axis labels with graph data and not a graph display. * grapher/GraphWidget.hxx: Move graph-related members to Graph class. * grapher/GraphWidget.cxx (getExtents, setExtents): Move to Graph class (on_expose_event): Move graph rendering to Graph. (on_button_press_event): Delegate to Graph. (on_motion_notify_event, on_scroll_event): Modify "active" graph. * grapher/StapParser.cxx (findTaggedValue): New parsing helper function. (io_callback): Support new syntax where properties are attached to graph data and not the entire graph. * grapher/grapher.cxx (GrapherWindow): Don't set graph values. * grapher/Makefile.am: Add Graph.cxx. * testsuite/systemtap.examples/general/grapher.stp: New property syntax.
* Move dfwlpp into its own fileJosh Stone2009-05-121-2/+3
| | | | | It's not a terribly clean split, but moving it helps reveals some of the knots that need to be untangled.
* Correct typo in BUILD_SERVER test in configure.ac.Dave Brolley2009-05-111-3/+2
|
* Run autoreconfEugeniy Meshcheryakov2009-05-051-2/+3
|
* Module signing and verification using a separate file for the module signature.Dave Brolley2009-05-041-3/+2
|
* Version bumps for 0.9.5 releaseJosh Stone2009-03-271-61/+33
|
* Kill all ChangeLogsJosh Stone2009-02-191-33/+62
| | | | | | Mark Wielaard, a dear friend of the departed, will be performing a song and dance at the funeral services to commemorate the joyous times that they had together.
* fixing configury version driftFrank Ch. Eigler2009-02-171-18/+41
|
* Move sdt.h to includes/sys and use in tests.Mark Wielaard2009-02-171-43/+20
|
* PR 9716, replaced pkgconfig checks with AC macros in configure.ac for server ↵Elliott Baron2009-02-171-0/+1
| | | | deps.
* remove support for "make dist" since git-archive does as well;Frank Ch. Eigler2008-08-251-178/+15
| | | | "make rpm" remains for private testing
* Examples html files moved into subdir.Mark Wielaard2008-08-251-18/+24
|
* Robustness improvements for the stap client/serverDave Brolley2008-08-251-1/+7
|
* Start/stop the systemtap server from systemtap.exp and not in the top level ↵Dave Brolley2008-08-081-2/+2
| | | | Makefile.
* Ensure that a systemtap server is available if 'server' is specifiedDave Brolley2008-07-291-1/+1
| | | | in EXTRA_TOOL_OPTS for 'make check' and 'make installcheck'
* Enable 'make check' and 'make installcheck' using the systemtap client/server.Dave Brolley2008-07-141-2/+3
|
* Correct redirect of stderr in testsuite. Make installcheck not depend on clean.Mark Wielaard2008-05-281-2/+2
|
* PR6550: add comment justifying "execrc"Frank Ch. Eigler2008-05-251-0/+2
|
* PR6550: also EXTRA_DIST the little "execrc" helper script fileFrank Ch. Eigler2008-05-251-1/+1
|
* PR6550: --enable-dejazilla: optional automatic test result reportingFrank Ch. Eigler2008-05-251-19/+25
|
* Allow "make clean" to succeed even if root-owned .systemtap/cache/* files exist.fche2008-01-291-2/+2
| | | | | | | | 2008-01-29 Frank Ch. Eigler <fche@elastic.org> * Makefile.am (clean-local): Allow "rm -rf" to fail due to root-owned .ko files in the local cache. * Makefile.in: Regenerated.
* staplog crash(8) module testsfche2008-01-251-2/+4
| | | | | | | | | | | | | | | | 2008-01-24 Frank Ch. Eigler <fche@elastic.org> * Makefile.am: Make another $(MKDIR) call visible. * Makefile.in: Regenerated. 2008-01-24 Frank Ch. Eigler <fche@elastic.org> crash(8) tests, based on Masami Hiramatsu <mhiramat@redhat.com>: * Makefile.am (CRASH_LIBDIR): Pass in $(RUNTEST). * lib/systemtap.exp (as_root): Trace command string, output, and result. * sysetmtap.samples/crash.*, testlog.stp: New test case. * Makefile.in: Regenerated.
* 2007-06-21 David Smith <dsmith@redhat.com>dsmith2007-06-211-36/+57
| | | | | | * Makefile.in: Regenerated with automake 1.10. * aclocal.m4: Regenerated with aclocal 1.10. * configure: Regenerated.
* 2007-04-29 Frank Ch. Eigler <fche@elastic.org>fche2007-04-291-1/+7
| | | | | | | | | | * configure.ac: Mention testsuite/configure.ac for version matching. 2007-04-29 Frank Ch. Eigler <fche@elastic.org> * Makefile.am (EXTRA_DIST): Add dejagnu subdirectories. * configure.ac: Bump version to match parent directory. * Makefile.in, configure: Regenerated.
* 2007-03-13 Frank Ch. Eigler <fche@redhat.com>fche2007-03-141-66/+153
| | | | | | | | | | | | | | | | | | | | PR 4171. * Makefile.am (check, installcheck): Pass build-tree pointers in environment variables. * configure.ac: Run separate configury for testsuite/. * configure, Makefile.in: Regenerated. 2007-03-14 Frank Ch. Eigler <fche@redhat.com> PR 4171. * configure.ac, configure, aclocal.m4: New files to permit testsuite-only build tree. * Makefile.am (RUNTEST): Arrange a crazy concoction of environment/make variable for runtest. * Makefile.in: Regenerated. * */*.stp: Switch test cases from "./stap" to "stap" throughout. * lib/systemtap.exp: Assume/trace environment variables. (stap_run_batch): Add "#! stap"-handling hack.
* 2007-02-19 David Smith <dsmith@redhat.com>dsmith2007-02-201-2/+4
| | | | | | | | PR 4081 * Makefile.am: The symbolic link that the Makefile creates to stap now points to the installed version of stap when "make installcheck" is run. * Makefile.in: Regenerated.
* 2006-10-30 David Smith <dsmith@redhat.com>dsmith2006-10-301-0/+1
| | | | | | | | | | | | | * systemtap.base/cache.exp: Saves value of SYSTEMTAP_DIR environment variable before starting tests and restores value at the end. Without this caching was broken for the rest of the testsuite, since all cached files were ending up in testsuite/.cache_test (which gets deleted on the next run of the testsuite). * Makefile.am: The 'clean-local' target now removes the .systemtap and .cache_test directories. * Makefile.in: Regenerated.
* Change warning message from configure for mysqlguanglei2006-10-201-0/+1
|
* * configure.ac: add the checking for mysql_config, mysqlclient library and ↵guanglei2006-10-161-0/+4
| | | | | | header files * runtime/lket/b2a/Makefile.am: set compile flags according to the existance of mysql_config
* * runtime/lket/b2a/lket_b2a.c, runtime/lket/b2a/lket_b2a.h:guanglei2006-10-101-0/+2
| | | | | | | | | | | | | | | | | Adding the support of automatically database creation and dumping lket trace into mysql database * configure.ac: add the checking of mysql client library * Makefile.in, configure: regenerated * runtime/lket/b2a/Makefile.am: add the checking and optional compiling for mysql client library * runtime/lket/b2a/Makefile.in: regenerated
* 2006-08-12 Frank Ch. Eigler <fche@elastic.org>fche2006-08-121-1/+1
| | | | | | | | | | | * Makefile.am (dist-hook): Make "make dist" dist. * Makefile.in: Regenerated. [testsuite] 2006-08-12 Frank Ch. Eigler <fche@elastic.org> * Makefile.am (clean-local): Clean up dejagnu turds. * Makefile.in: Regenerated.
* 2006-08-12 Frank Ch. Eigler <fche@elastic.org>fche2006-08-121-0/+342
* configure.ac, Makefile.am: Descend into testsuite/ directory. Remove local test logic. * configure, Makefile.in: Regenerated. * runtest.sh: Not yet removed. * HACKING: Update for new testsuite layout. 2006-08-12 Frank Ch. Eigler <fche@elastic.org> * all: Reorganized old pass-1..4 tests one dejagnu bucket. Moved over old pass-5 tests, except for disabled syscalls tests. * Makefile (installcheck): New target for running pass-1..5 tests against installed systemtap.