diff options
author | Tim Moore <timoore@redhat.com> | 2010-01-05 15:22:21 +0100 |
---|---|---|
committer | Tim Moore <timoore@redhat.com> | 2010-01-05 15:22:21 +0100 |
commit | 091df18ca8cd329bec8219ce0908a109e25ba1a4 (patch) | |
tree | 47fcc31c40af1444d277a3baf9de2a5ebe7705aa /testsuite/systemtap.base/declaration.exp | |
parent | 21e8e579ef10942bf2db3e1514026a6d132b1502 (diff) | |
parent | 23312a05753e948f7053beccc3dedfbe407a660a (diff) | |
download | systemtap-steved-091df18ca8cd329bec8219ce0908a109e25ba1a4.tar.gz systemtap-steved-091df18ca8cd329bec8219ce0908a109e25ba1a4.tar.xz systemtap-steved-091df18ca8cd329bec8219ce0908a109e25ba1a4.zip |
Merge remote branch 'origin/master'
Diffstat (limited to 'testsuite/systemtap.base/declaration.exp')
-rw-r--r-- | testsuite/systemtap.base/declaration.exp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/testsuite/systemtap.base/declaration.exp b/testsuite/systemtap.base/declaration.exp deleted file mode 100644 index f7452a14..00000000 --- a/testsuite/systemtap.base/declaration.exp +++ /dev/null @@ -1,20 +0,0 @@ -# Declaration tests. Specifically looking for resolution of -# DW_AT_declaration from another module - -set TEST_NAME "empty-struct resolve-fail" - -# this test just makes sure $device is still stubbed with DW_AT_declaration -set failscript { - probe\ module(\"libata\").function(\"ata_qc_issue\")\ \{\ print(\$qc->\$scsicmd->\$device->\$host->\$host_no)\ \}; -} - -stap_compile $TEST_NAME 0 $failscript - -set TEST_NAME "empty-struct resolve-pass" - -set passscript { - probe\ module(\"scsi_mod\").function(\"scsi_request_fn\")\ \{print(\$q)\} -} - -setup_xfail 10732 "*-*-*" -stap_compile $TEST_NAME 1 [concat $passscript $failscript ] |