tests/ust-basic-tracing/ust-basic-tracing
tests/ust-multi-test/ust-multi-test
tests/test-libustinstr-malloc/prog
-tests/test-nevents/prog
tests/trace_event/trace_event_test
tests/tracepoint/benchmark/tracepoint_benchmark
tests/tracepoint/tracepoint_test
}
-simple_harness_run test-nevents/test-nevents.sh
-
simple_harness_run fork/fork.sh
simple_harness_run test-libustinstr-malloc/test-libustinstr-malloc.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 test generates a trace of a certain number of events. It is used to
- * check that no events are lost while tracing.
- */
-
-#include <string.h>
-#include <stdlib.h>
-#include <ust/marker.h>
-
-#define N_ITER 100000
-
-int main()
-{
- int i;
-
- for(i=0; i<N_ITER; i++) {
- ust_marker(an_event, "%d", i);
- ust_marker(another_event, "%s", "Hello, World!");
- }
-
- 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 "Test-nevents"
-
-plan_tests 4
-USTTRACE="$TESTDIR/../usttrace"
-
-okx $USTTRACE -L $TESTDIR/test-nevents/prog
-trace_loc=$($USTTRACE -W)
-trace_matches -N "an_event" -n 100000 "^ust.an_event:" $trace_loc
-trace_matches -N "another_event" -n 100000 "^ust.another_event:" $trace_loc
-check_trace_logs "$trace_loc"