Move current compile tests to 'api1'
[lttng-ust.git] / tests / compile / hello-many / hello-many.c
diff --git a/tests/compile/hello-many/hello-many.c b/tests/compile/hello-many/hello-many.c
deleted file mode 100644 (file)
index 1cae515..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * SPDX-License-Identifier: LGPL-2.1-only
- *
- * Copyright (C) 2009 Pierre-Marc Fournier
- * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
- */
-
-#include <stdio.h>
-#include <unistd.h>
-#include <sys/mman.h>
-#include <stdarg.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <signal.h>
-#include <string.h>
-#include <stdlib.h>
-
-#define LTTNG_UST_TRACEPOINT_DEFINE
-#include "ust_tests_hello_many.h"
-
-int main(int argc, char **argv)
-{
-       int delay = 0;
-
-       if (argc == 2)
-               delay = atoi(argv[1]);
-
-       fprintf(stderr, "Hello, World!\n");
-
-       sleep(delay);
-
-       fprintf(stderr, "Tracing... ");
-       lttng_ust_tracepoint(ust_tests_hello_many, tptest_simple1);
-       lttng_ust_tracepoint(ust_tests_hello_many, tptest_simple34);
-       fprintf(stderr, " done.\n");
-       return 0;
-}
This page took 0.030474 seconds and 4 git commands to generate.