Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove redundant, old, and deprecated test
authorFrederic Suter <frederic.suter@cc.in2p3.fr>
Wed, 4 Mar 2020 12:45:49 +0000 (13:45 +0100)
committerFrederic Suter <frederic.suter@cc.in2p3.fr>
Thu, 5 Mar 2020 08:38:02 +0000 (09:38 +0100)
MANIFEST.in
examples/deprecated/msg/CMakeLists.txt
examples/deprecated/msg/process-create/process-create.c [deleted file]
examples/deprecated/msg/process-create/process-create.tesh [deleted file]

index af6548a..a7b2fdc 100644 (file)
@@ -265,8 +265,6 @@ include examples/deprecated/msg/network-ns3/one_cluster_d.xml
 include examples/deprecated/msg/network-ns3/onelink_d.xml
 include examples/deprecated/msg/platform-failures/platform-failures.c
 include examples/deprecated/msg/platform-failures/platform-failures.tesh
-include examples/deprecated/msg/process-create/process-create.c
-include examples/deprecated/msg/process-create/process-create.tesh
 include examples/deprecated/msg/synchro-semaphore/synchro-semaphore.c
 include examples/deprecated/msg/synchro-semaphore/synchro-semaphore.tesh
 include examples/deprecated/msg/trace-categories/trace-categories.c
index bff0b52..402f82c 100644 (file)
@@ -1,7 +1,6 @@
 # C examples
 foreach(x app-masterworker cloud-masterworker
           dht-pastry platform-failures
-          process-create 
           synchro-semaphore trace-categories 
           trace-route-user-variables trace-link-user-variables trace-masterworker
           trace-process-migration trace-host-user-variables)
@@ -58,7 +57,6 @@ set(xml_files    ${xml_files}     ${CMAKE_CURRENT_SOURCE_DIR}/app-masterworker/a
 if(enable_msg)
   foreach(x app-masterworker cloud-masterworker
             dht-pastry dht-kademlia platform-failures
-            process-create 
             synchro-semaphore)
     ADD_TESH_FACTORIES(msg-${x} "thread;ucontext;raw;boost" 
                                 --setenv bindir=${CMAKE_BINARY_DIR}/examples/deprecated/msg/${x}
diff --git a/examples/deprecated/msg/process-create/process-create.c b/examples/deprecated/msg/process-create/process-create.c
deleted file mode 100644 (file)
index 81fb1b9..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/* Copyright (c) 2010-2020. The SimGrid Team. All rights reserved.          */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#include "simgrid/msg.h"
-
-/* Main function of the process I want to start manually */
-static int process_function(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[])
-{
-  msg_task_t task = MSG_task_create("task", 100, 0, NULL);
-  MSG_task_execute (task);
-  MSG_task_destroy (task);
-  return 0;
-}
-
-int main(int argc, char *argv[])
-{
-  MSG_init(&argc, argv);
-  xbt_assert(argc > 1, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]);
-
-  MSG_create_environment(argv[1]);
-  MSG_process_create("simple_func", process_function, NULL, MSG_get_host_by_name("Tremblay"));
-  MSG_process_create("simple_func", process_function, NULL, MSG_get_host_by_name("Fafard"));
-
-  MSG_main();
-  return 0;
-}
diff --git a/examples/deprecated/msg/process-create/process-create.tesh b/examples/deprecated/msg/process-create/process-create.tesh
deleted file mode 100644 (file)
index fbcf897..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/usr/bin/env tesh
-
-p Start remote processes 
-$ ${bindir:=.}/process-create ${platfdir}/small_platform.xml