Moved to lttng-tools.
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
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
}
-simple_harness_run test-libustinstr-malloc/test-libustinstr-malloc.sh
-
simple_harness_run ./manual_mode_tracing.sh
simple_harness_run ./valgrind_ust-consumerd.sh
+++ /dev/null
-#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
+++ /dev/null
-/* 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;
-}
+++ /dev/null
-#!/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"