summaryrefslogtreecommitdiffstats
path: root/testsuite/parseok/fourteen.stp
blob: cc51b90b6f0d527c9c3da9120d0d616329f7db60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! stap -p1

global
%( kernel_v > "2.6" %? /* and */
   %( kernel_vr != "2.9.77-2873NOTHING" %? /* and */
      %( kernel_v <= "3.5" %? /* and */
         %( kernel_vr == "2.3.5-2.43.54.2" %? "FAIL1" %: PASS %)
      %: "FAIL2" %)
   %: "FAIL3" %)
%: "FAIL4" %)

global
%( arch == "i386" %? i386
%: %( arch == "i686" %? i686
   %: %( arch != "x86_64" %? other %: x86_64 %) 
   %)
%)