From 182e3dbef16de08150f09072a377ec499cba9dfc Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sun, 12 Oct 2025 18:50:38 +0900 Subject: [PATCH] nixos/tests: remove leftover file for removed mpich nixos test This file is not used anymore, the test was disabled in c044375a0a765a92925a83ba7d78718ffb469512 and removed in bb8b48c794f8c0517b4aded06616771a84d1b518 (#19963). --- nixos/tests/mpich-example.c | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 nixos/tests/mpich-example.c diff --git a/nixos/tests/mpich-example.c b/nixos/tests/mpich-example.c deleted file mode 100644 index c48e3c45b72e..000000000000 --- a/nixos/tests/mpich-example.c +++ /dev/null @@ -1,21 +0,0 @@ -#include -#include -#include - -int -main (int argc, char *argv[]) -{ - int rank, size, length; - char name[BUFSIZ]; - - MPI_Init (&argc, &argv); - MPI_Comm_rank (MPI_COMM_WORLD, &rank); - MPI_Comm_size (MPI_COMM_WORLD, &size); - MPI_Get_processor_name (name, &length); - - printf ("%s: hello world from process %d of %d\n", name, rank, size); - - MPI_Finalize (); - - return EXIT_SUCCESS; -}