Verified Commit e3724e60 authored by ANA MANZANO RODRIGUEZ's avatar ANA MANZANO RODRIGUEZ Committed by Alberto Miranda
Browse files

ADM_remove_adhoc_storage.c test created

parent 058933a5
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
#include <stdlib.h>
#include <stdio.h>
#include <admire.h>

int
main(int argc, char* argv[]) {

    if(argc != 3) {
        fprintf(stderr, "ERROR: no location provided\n");
        fprintf(stderr, "Usage: ADM_remove_adhoc_storage <REMOTE_IP> "
                        "<JOB_REQS>\n");
        exit(EXIT_FAILURE);
    }

    int exit_status = EXIT_SUCCESS;
    ADM_server_t server = ADM_server_create("tcp", argv[1]);


    ADM_job_t job;
    ADM_storage_t adhoc_storage;

    ADM_return_t ret = ADM_remove_adhoc_storage(server, job, adhoc_storage);

    if(ret != ADM_SUCCESS) {
        fprintf(stdout,
                "ADM_remove_adhoc_storage() remote procedure not completed "
                "successfully\n");
        exit_status = EXIT_FAILURE;
        goto cleanup;
    }

    fprintf(stdout, "ADM_remove_adhoc_storage() remote procedure completed "
                    "successfully\n");

cleanup:

    ADM_server_destroy(server);
    exit(exit_status);
}
 No newline at end of file
+8 −2
Original line number Diff line number Diff line
@@ -25,7 +25,9 @@
list(APPEND examples_c ADM_register_job ADM_cancel_transfer ADM_connect_data_operation ADM_define_data_operation
  ADM_deploy_adhoc_storage ADM_finalize_data_operation ADM_get_pending_transfers ADM_get_qos_constraints
  ADM_get_statistics ADM_get_transfer_priority #ADM_link_transfer_to_data_operation
  ADM_register_adhoc_storage)
  ADM_register_adhoc_storage ADM_remove_adhoc_storage)

  # ADM_in_situ_ops ADM_in_transit_ops not implemented

foreach(example IN LISTS examples_c)
  add_executable(${example}_c)
@@ -59,3 +61,7 @@ add_test(ADM_get_transfer_priority_test ADM_get_transfer_priority ofi+tcp://127.
#add_test(ADM_link_transfer_to_data_operation_test ADM_link_transfer_to_data_operation ofi+tcp://127.0.0.1:52000 8 2 dataset arguments 42)

add_test(ADM_register_adhoc_storage_test ADM_register_adhoc_storage ofi+tcp://127.0.0.1:52000 42)

#ADM_register_pfs_storage (missing, not working in cpp. Will be created when they work in cpp)

add_test(ADM_remove_adhoc_storage_test ADM_remove_adhoc_storage ofi+tcp://127.0.0.1:52000 42)
 No newline at end of file