diff options
author | Wenji Huang <wenji.huang@oracle.com> | 2009-08-14 01:51:36 -0400 |
---|---|---|
committer | Wenji Huang <wenji.huang@oracle.com> | 2009-08-14 01:51:36 -0400 |
commit | f3228a333bddb3fe0178a1ca2c8cf8ada54dffd4 (patch) | |
tree | 4833f4e483771c7d1be07914dc4d77cd11a53172 | |
parent | 43241c442263dd52e34f86e2d0a64c20cd7235c3 (diff) | |
download | systemtap-steved-f3228a333bddb3fe0178a1ca2c8cf8ada54dffd4.tar.gz systemtap-steved-f3228a333bddb3fe0178a1ca2c8cf8ada54dffd4.tar.xz systemtap-steved-f3228a333bddb3fe0178a1ca2c8cf8ada54dffd4.zip |
Add missing quote for uname.tcl
* testsuite/systemtap.exelib/uname.tcl: Add '"'.
-rw-r--r-- | testsuite/systemtap.exelib/uname.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.exelib/uname.tcl b/testsuite/systemtap.exelib/uname.tcl index 64fed6f0..0bcf58d2 100644 --- a/testsuite/systemtap.exelib/uname.tcl +++ b/testsuite/systemtap.exelib/uname.tcl @@ -9,5 +9,5 @@ lib: lib_func=lib_func} # Only run on make installcheck if {! [installtest_p]} { untested "uname-$testname"; return } -if {! [uprobes_p]} { untested "uname-$testname; return } +if {! [uprobes_p]} { untested "uname-$testname"; return } stap_run3 uname-$testname $srcdir/$subdir/uname.stp $testexe $testlib -c $testexe |