Remove tests-libustinstr-malloc
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 21 Feb 2013 16:53:40 +0000 (11:53 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 26 Mar 2013 15:22:02 +0000 (11:22 -0400)
Moved to lttng-tools.

Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
.gitignore
tests/runtests
tests/test-libustinstr-malloc/Makefile.am [deleted file]
tests/test-libustinstr-malloc/prog.c [deleted file]
tests/test-libustinstr-malloc/test-libustinstr-malloc.sh [deleted file]

index 03cbcbb88957f474cc6e94e0d738d8a66405361d..a09d4641a224aeb2aa2945e3eb2728ac66a0b478 100644 (file)
@@ -36,7 +36,6 @@ tests/hello.cxx/hello
 tests/same_line_marker/same_line_marker
 tests/ust-basic-tracing/ust-basic-tracing
 tests/ust-multi-test/ust-multi-test
-tests/test-libustinstr-malloc/prog
 tests/trace_event/trace_event_test
 tests/tracepoint/benchmark/tracepoint_benchmark
 tests/tracepoint/tracepoint_test
index 116163127720b7a2518d7ef8f46ffd4e8488946c..17570b380772b88743d6f31a2fb2ea268602c6f8 100755 (executable)
@@ -29,8 +29,6 @@ function simple_harness_run() {
 }
 
 
-simple_harness_run test-libustinstr-malloc/test-libustinstr-malloc.sh
-
 simple_harness_run ./manual_mode_tracing.sh
 
 simple_harness_run ./valgrind_ust-consumerd.sh
diff --git a/tests/test-libustinstr-malloc/Makefile.am b/tests/test-libustinstr-malloc/Makefile.am
deleted file mode 100644 (file)
index 502d6c4..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-#AM_CPPFLAGS = -I$(top_srcdir)/include
-
-noinst_PROGRAMS = prog
-prog_SOURCES = prog.c
-prog_LDADD = $(top_builddir)/libust/libust.la $(top_builddir)/libust-initializer.o
diff --git a/tests/test-libustinstr-malloc/prog.c b/tests/test-libustinstr-malloc/prog.c
deleted file mode 100644 (file)
index 8b3d5fe..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/* Copyright (C) 2009  Pierre-Marc Fournier
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
- */
-
-/* This program is used to test malloc instrumentation with libustinstr-malloc.
- */
-
-#include <string.h>
-#include <stdlib.h>
-
-#define N_ITER 1000
-
-int main()
-{
-       int i;
-       const char teststr[] = "Hello World! 1234567890abc";
-       void *ptrs[N_ITER];
-
-       for(i=0; i<N_ITER; i++) {
-               ptrs[i] = malloc(i+1000);
-
-               memcpy(ptrs[i], teststr, sizeof(teststr));
-
-               if(i%2 == 0) {
-                       free(ptrs[i]);
-               }
-       }
-
-       for(i=0; i<N_ITER; i++) {
-               if(i%2 == 1)
-                       free(ptrs[i]);
-       }
-
-       return 0;
-}
diff --git a/tests/test-libustinstr-malloc/test-libustinstr-malloc.sh b/tests/test-libustinstr-malloc/test-libustinstr-malloc.sh
deleted file mode 100755 (executable)
index 04ed64d..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/bash
-#
-# Copyright 2010 Ericsson AB
-#
-#    This file is part of LTTng-UST.
-#
-#    LTTng-UST is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    LTTng-UST is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with LTTng-UST.  If not, see <http://www.gnu.org/licenses/>.
-
-TESTDIR=$(dirname $0)/..
-
-source $TESTDIR/test_functions.sh
-source $TESTDIR/tap.sh
-
-starttest "libustinstr-malloc"
-
-plan_tests 3
-USTTRACE="$TESTDIR/../usttrace"
-
-okx $USTTRACE -L -lm $TESTDIR/test-libustinstr-malloc/.libs/prog
-trace_loc=$($USTTRACE -W)
-trace_matches -N "libustinstr-malloc - malloc" -n 1000 "^ust.malloc:.*{ size = 1[0-9][0-9][0-9]," $trace_loc
-check_trace_logs "$trace_loc"
This page took 0.027416 seconds and 4 git commands to generate.