summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Stone <joshua.i.stone@intel.com>2008-10-27 14:16:18 -0700
committerJosh Stone <joshua.i.stone@intel.com>2008-10-27 14:32:50 -0700
commit93f589fc4ea3a2882c039bf6da29c615550d0ee6 (patch)
treeaf799419c16b8146671f52b70965edea24615ca8
parente2646246d389bad48a734af8883805db35049507 (diff)
downloadsystemtap-steved-93f589fc4ea3a2882c039bf6da29c615550d0ee6.tar.gz
systemtap-steved-93f589fc4ea3a2882c039bf6da29c615550d0ee6.tar.xz
systemtap-steved-93f589fc4ea3a2882c039bf6da29c615550d0ee6.zip
Expose an i686 problem in printf %c support
-rw-r--r--testsuite/ChangeLog4
-rw-r--r--testsuite/systemtap.printf/char1.stp5
2 files changed, 6 insertions, 3 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog
index 829d605c..ec4cc401 100644
--- a/testsuite/ChangeLog
+++ b/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2008-10-27 Josh Stone <joshua.i.stone@intel.com>
+
+ * systemtap.printf/char1.stp: Expose i686 failure
+
2008-10-27 Rajan Arora <rarora@redhat.com>
* systemtap.base/global_end.exp: Spawn global_end2.stp
diff --git a/testsuite/systemtap.printf/char1.stp b/testsuite/systemtap.printf/char1.stp
index d7db1288..207d1bc5 100644
--- a/testsuite/systemtap.printf/char1.stp
+++ b/testsuite/systemtap.printf/char1.stp
@@ -2,8 +2,7 @@ probe begin
{
printf("%c", 115)
printf("%c", 116)
- printf("%c", 97)
- printf("%c", 112)
+ printf("%c%c", 97, 112)
print("\n")
exit()
-} \ No newline at end of file
+}