summaryrefslogtreecommitdiffstats
path: root/runtime/tests/math/math.test
diff options
context:
space:
mode:
authorStan Cox <scox@redhat.com>2008-05-29 14:46:38 -0400
committerStan Cox <scox@redhat.com>2008-05-29 14:46:38 -0400
commitc39d889155d4c9365bd27691d22a92c447ced976 (patch)
tree64b56069b0435ac09564ba983bea154a9747bcbe /runtime/tests/math/math.test
parentef63732e82dd7979dcf608ba6ed4528e150b47ac (diff)
downloadsystemtap-steved-c39d889155d4c9365bd27691d22a92c447ced976.tar.gz
systemtap-steved-c39d889155d4c9365bd27691d22a92c447ced976.tar.xz
systemtap-steved-c39d889155d4c9365bd27691d22a92c447ced976.zip
SW5106 Remove old map and histogram formatting code
Diffstat (limited to 'runtime/tests/math/math.test')
-rw-r--r--runtime/tests/math/math.test19
1 files changed, 0 insertions, 19 deletions
diff --git a/runtime/tests/math/math.test b/runtime/tests/math/math.test
deleted file mode 100644
index e7c58ba0..00000000
--- a/runtime/tests/math/math.test
+++ /dev/null
@@ -1,19 +0,0 @@
-package require tcltest
-namespace import -force tcltest::*
-
-cd $tcltest::testsDirectory
-
-set CFLAGS "-Os"
-set KPATH "/lib/modules/[exec uname -r]/build/include"
-set MPATH "/lib/modules/[exec uname -r]/build/include/asm/mach-default"
-set PATH "../../user"
-
-test printf_A {Basic printf test} -setup {
- exec gcc $CFLAGS -I $KPATH -I $PATH -I $MPATH -o test div64.c
-} -body {
- exec ./test
-} -result {OK}
-
-exec rm test
-
-cleanupTests