summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/ten.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/buildok/ten.stp')
-rwxr-xr-xtestsuite/buildok/ten.stp14
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/buildok/ten.stp b/testsuite/buildok/ten.stp
new file mode 100755
index 00000000..6015fbb9
--- /dev/null
+++ b/testsuite/buildok/ten.stp
@@ -0,0 +1,14 @@
+#! stap -p4
+
+probe begin
+{
+ a = 1+01+0x1-1-01-0x1;
+
+ long_max = 2147483647;
+ ulong_max = 4294967295;
+ long_min = -2147483647-1;
+
+ llong_max = 9223372036854775807;
+ ullong_max = 18446744073709551615;
+ llong_min = -9223372036854775807-1;
+}