From 346cb15f0844d5d7364c2db2ddf0bf7d5089964d Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Tue, 2 Oct 2012 12:02:06 -0400 Subject: [PATCH] PR11424: remove obsolete nodwf tests, now that nodwf works better --- testsuite/semko/nodwf01.stp | 14 -------------- testsuite/semko/nodwf02.stp | 14 -------------- testsuite/semko/nodwf03.stp | 14 -------------- testsuite/semko/nodwf04.stp | 14 -------------- testsuite/semko/nodwf05.stp | 14 -------------- testsuite/semko/nodwf06.stp | 14 -------------- testsuite/semko/nodwf07.stp | 15 --------------- testsuite/semko/nodwf08.stp | 14 -------------- testsuite/semko/nodwf09.stp | 14 -------------- 9 files changed, 127 deletions(-) delete mode 100755 testsuite/semko/nodwf01.stp delete mode 100755 testsuite/semko/nodwf02.stp delete mode 100755 testsuite/semko/nodwf03.stp delete mode 100755 testsuite/semko/nodwf04.stp delete mode 100755 testsuite/semko/nodwf05.stp delete mode 100755 testsuite/semko/nodwf06.stp delete mode 100755 testsuite/semko/nodwf07.stp delete mode 100755 testsuite/semko/nodwf08.stp delete mode 100755 testsuite/semko/nodwf09.stp diff --git a/testsuite/semko/nodwf01.stp b/testsuite/semko/nodwf01.stp deleted file mode 100755 index 8a5c37ea1..000000000 --- a/testsuite/semko/nodwf01.stp +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# Verify that --ignore-vmlinux "hides" vmlinux. - -stap $@ -p2 --ignore-vmlinux -e ' -probe kernel.function("printk") { - printf("%s called\n", probefunc()) - exit() -} - -probe timer.sec(30) { - exit() -} -' diff --git a/testsuite/semko/nodwf02.stp b/testsuite/semko/nodwf02.stp deleted file mode 100755 index 16e4e437c..000000000 --- a/testsuite/semko/nodwf02.stp +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# Verify that --ignore-dwarf "hides" dwarf info. - -stap $@ -p2 --ignore-dwarf -e ' -probe kernel.function("printk") { - printf("%s called\n", probefunc()) - exit() -} - -probe timer.sec(30) { - exit() -} -' diff --git a/testsuite/semko/nodwf03.stp b/testsuite/semko/nodwf03.stp deleted file mode 100755 index 4e4eb528f..000000000 --- a/testsuite/semko/nodwf03.stp +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# --kelf doesn't work if vmlinux can't be found. - -stap $@ -p2 --ignore-vmlinux --kelf -e ' -probe kernel.function("printk") { - printf("%s called\n", probefunc()) - exit() -} - -probe timer.sec(30) { - exit() -} -' diff --git a/testsuite/semko/nodwf04.stp b/testsuite/semko/nodwf04.stp deleted file mode 100755 index 8d491b18a..000000000 --- a/testsuite/semko/nodwf04.stp +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# The symbol table doesn't give us enough info to probe inline functions. - -stap $@ -p2 --ignore-vmlinux --kmap=/proc/kallsyms -e ' -probe kernel.function("list_empty").inline { - printf("%s called\n", probefunc()) - exit() -} - -probe timer.sec(15) { - exit() -} -' diff --git a/testsuite/semko/nodwf05.stp b/testsuite/semko/nodwf05.stp deleted file mode 100755 index d3bd3df6d..000000000 --- a/testsuite/semko/nodwf05.stp +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# The symbol table doesn't give us enough info to map source files to functions. - -stap $@ -p2 --ignore-vmlinux --kmap=/proc/kallsyms -e ' -probe kernel.function("*@kernel/printk.c") { - printf("%s called\n", probefunc()) - exit() -} - -probe timer.sec(15) { - exit() -} -' diff --git a/testsuite/semko/nodwf06.stp b/testsuite/semko/nodwf06.stp deleted file mode 100755 index 0de31c131..000000000 --- a/testsuite/semko/nodwf06.stp +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# The symbol table doesn't give us enough info to probe statements. - -stap $@ -p2 --ignore-vmlinux --kmap=/proc/kallsyms -e ' -probe kernel.statement("*@kernel/printk.c:639") { - printf("probe hit: %s\n", pp()) - exit() -} - -probe timer.sec(15) { - exit() -} -' diff --git a/testsuite/semko/nodwf07.stp b/testsuite/semko/nodwf07.stp deleted file mode 100755 index cd056fe0e..000000000 --- a/testsuite/semko/nodwf07.stp +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# This should fail until/unless we expand our blacklist to cover symbols -# in the symbol table that don't show up in dwarf. - -stap $@ -p2 --ignore-vmlinux --kmap=/proc/kallsyms -e ' -probe kernel.function("*") { - printf("%s called\n", probefunc()) - exit() -} - -probe timer.sec(15) { - exit() -} -' >/dev/null diff --git a/testsuite/semko/nodwf08.stp b/testsuite/semko/nodwf08.stp deleted file mode 100755 index 2c10b2adb..000000000 --- a/testsuite/semko/nodwf08.stp +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# The regular blacklist should thwart this. - -stap $@ -p2 --ignore-vmlinux --kmap=/proc/kallsyms -e ' -probe kernel.function("register_kprobe") { - printf("%s called\n", probefunc()) - exit() -} - -probe timer.sec(30) { - exit() -} -' diff --git a/testsuite/semko/nodwf09.stp b/testsuite/semko/nodwf09.stp deleted file mode 100755 index aa07c5400..000000000 --- a/testsuite/semko/nodwf09.stp +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# The symbol table doesn't give us enough info to evaluate target variables. - -stap $@ -p2 --ignore-vmlinux --kmap=/proc/kallsyms -e ' -probe kernel.function("printk") { - printf("%s called; fmt = \"%s\"\n", probefunc(), kernel_string($fmt)) - exit() -} - -probe timer.sec(15) { - exit() -} -' -- 2.43.5