From 5ba96b9022078048e9f916431d3b8792a9dc8615 Mon Sep 17 00:00:00 2001 From: fche Date: Wed, 14 Mar 2007 15:20:45 +0000 Subject: 2007-03-13 Frank Ch. Eigler 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 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. --- testsuite/semok/args.stp | 2 +- testsuite/semok/eight.stp | 2 +- testsuite/semok/nine.stp | 2 +- testsuite/semok/transko.stp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'testsuite/semok') diff --git a/testsuite/semok/args.stp b/testsuite/semok/args.stp index 98112088..bc193169 100755 --- a/testsuite/semok/args.stp +++ b/testsuite/semok/args.stp @@ -1,3 +1,3 @@ #! /bin/sh -./stap -p2 -e 'probe begin { log (@1 . sprint($2)) }' hello 0xdeadbeef +stap -p2 -e 'probe begin { log (@1 . sprint($2)) }' hello 0xdeadbeef diff --git a/testsuite/semok/eight.stp b/testsuite/semok/eight.stp index 01119953..dd7f71ed 100755 --- a/testsuite/semok/eight.stp +++ b/testsuite/semok/eight.stp @@ -1,3 +1,3 @@ #! /bin/sh -./stap -p2 -I${SRCDIR}/testsuite/semlib -e 'probe begin { a = f1 (); }' +stap -p2 -I${SRCDIR}/testsuite/semlib -e 'probe begin { a = f1 (); }' diff --git a/testsuite/semok/nine.stp b/testsuite/semok/nine.stp index f1a48c6f..b95eefcf 100755 --- a/testsuite/semok/nine.stp +++ b/testsuite/semok/nine.stp @@ -1,3 +1,3 @@ #! /bin/sh -./stap -p2 -I${SRCDIR}/testsuite/semlib -e 'probe begin { g2[1] = 0 }' +stap -p2 -I${SRCDIR}/testsuite/semlib -e 'probe begin { g2[1] = 0 }' diff --git a/testsuite/semok/transko.stp b/testsuite/semok/transko.stp index 18bfc8aa..0ea2fe74 100755 --- a/testsuite/semok/transko.stp +++ b/testsuite/semok/transko.stp @@ -9,6 +9,6 @@ do if grep -q /bin/sh $file; then true # can't override stap options else - ./stap -p2 $file + stap -p2 $file fi done -- cgit