1
1

Remove the dummy output file when the test is done

This commit was SVN r5053.
Этот коммит содержится в:
Jeff Squyres 2005-03-27 12:47:32 +00:00
родитель 450cfb0a8c
Коммит 226542f98f
3 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -26,6 +26,9 @@
#include "orte_config.h"
#include <stdio.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "include/orte_constants.h"
#include "include/orte_schema.h"
@ -355,6 +358,7 @@ int main(int argc, char **argv)
}
*/
test_finalize();
unlink("test_gpr_replica_out");
return(0);
}

Просмотреть файл

@ -26,6 +26,9 @@
#include "orte_config.h"
#include <stdio.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "include/orte_constants.h"
@ -362,6 +365,7 @@ int main(int argc, char **argv)
}
*/
test_finalize();
unlink("test_gpr_replica_out");
return(0);
}

Просмотреть файл

@ -18,6 +18,9 @@
#include <errno.h>
#include <sys/types.h>
#include <sys/wait.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "support.h"
@ -400,6 +403,7 @@ int run_test()
}
*/
test_finalize();
unlink("test_gpr_replica_out");
return(0);
}