summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.context/context.exp
diff options
context:
space:
mode:
authorEugeniy Meshcheryakov <eugen@debian.org>2009-05-05 21:27:10 +0200
committerEugeniy Meshcheryakov <eugen@debian.org>2009-05-05 21:27:10 +0200
commit9f27bd8143604a815b11b48ca054e03f78bdf69e (patch)
tree14a180a46e706791485321257f2e0459e812711c /testsuite/systemtap.context/context.exp
parent2a5b3e3fe4e87a9b25286358f280b67791816e0a (diff)
downloadsystemtap-steved-9f27bd8143604a815b11b48ca054e03f78bdf69e.tar.gz
systemtap-steved-9f27bd8143604a815b11b48ca054e03f78bdf69e.tar.xz
systemtap-steved-9f27bd8143604a815b11b48ca054e03f78bdf69e.zip
Fix arguments to mktemp with less than 6 X's
Diffstat (limited to 'testsuite/systemtap.context/context.exp')
-rw-r--r--testsuite/systemtap.context/context.exp2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.context/context.exp b/testsuite/systemtap.context/context.exp
index cec09b29..52bf260d 100644
--- a/testsuite/systemtap.context/context.exp
+++ b/testsuite/systemtap.context/context.exp
@@ -23,7 +23,7 @@ proc build_modules {} {
global build_dir
global srcdir subdir
- if {[catch {exec mktemp -d staptestXXXXX} build_dir]} {
+ if {[catch {exec mktemp -d staptestXXXXXX} build_dir]} {
puts stderr "Failed to create temporary directory: $build_dir"
return 0
}