Remove outdated test basic
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 20 Feb 2013 20:11:42 +0000 (15:11 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 26 Mar 2013 15:22:02 +0000 (11:22 -0400)
This test is replaced by the ust-demo test in lttng-tools

Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
.gitignore
tests/basic/Makefile.am [deleted file]
tests/basic/basic.c [deleted file]
tests/basic/run [deleted file]

index 446765245fb28200313f71b32f0f5fb1ba043162..1f1b2b088266f01299cc2066e09253ada4ab9b61 100644 (file)
@@ -31,7 +31,6 @@ lttng-ust.pc
 ustctl/ustctl
 ust-consumerd/ust-consumerd
 
-tests/basic/basic
 tests/basic_long/basic_long
 tests/daemon/daemon
 tests/demo/demo
diff --git a/tests/basic/Makefile.am b/tests/basic/Makefile.am
deleted file mode 100644 (file)
index 0fa45ea..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-AM_CPPFLAGS = -I$(top_srcdir)/include
-
-noinst_PROGRAMS = basic
-basic_SOURCES = basic.c
-basic_LDADD = $(top_builddir)/libust/libust.la $(top_builddir)/libust-initializer.o
-
-noinst_SCRIPTS = run
-EXTRA_DIST = run
diff --git a/tests/basic/basic.c b/tests/basic/basic.c
deleted file mode 100644 (file)
index e1832cd..0000000
+++ /dev/null
@@ -1,38 +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
- */
-
-/* Basic testing program that just records a few events. */
-
-#include <stdio.h>
-#include <unistd.h>
-
-#include <ust/marker.h>
-
-int main()
-{
-       int i;
-
-       printf("Basic test program\n");
-
-       for(i=0; i<50; i++) {
-               ust_marker(bar, "str %s", "FOOBAZ");
-               ust_marker(bar2, "number1 %d number2 %d", 53, 9800);
-               usleep(100000);
-       }
-
-       return 0;
-}
diff --git a/tests/basic/run b/tests/basic/run
deleted file mode 100755 (executable)
index 16601ef..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-
-# Run with nothing
-
-
-#LD_LIBRARY_PATH=../../libust/.libs:../../../liburcu $1 .libs/basic
-#UST_AUTOPROBE="/foo" LD_LIBRARY_PATH=../../libust/.libs:../../../liburcu $1 .libs/basic
-UST_AUTOPROBE=1 UST_TRACE=1 LD_LIBRARY_PATH=../../libust/.libs:../../../liburcu $1 .libs/basic
This page took 0.028304 seconds and 4 git commands to generate.