Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill obsolete config test programs.
[simgrid.git] / tools / cmake / test_prog / prog_snprintf.c
diff --git a/tools/cmake/test_prog/prog_snprintf.c b/tools/cmake/test_prog/prog_snprintf.c
deleted file mode 100644 (file)
index 1840185..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/* Copyright (c) 2010-2018. 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 <stdio.h>
-
-int main(void)
-{
-  char bufs[5] = { 'x', 'x', 'x', '\0', '\0' };
-  char bufd[5] = { 'x', 'x', 'x', '\0', '\0' };
-  int i;
-  i = snprintf(bufs, 2, "%s", "111");
-  if (strcmp(bufs, "1"))
-    exit(1);
-  if (i != 3)
-    exit(1);
-  i = snprintf(bufd, 2, "%d", 111);
-  if (strcmp(bufd, "1"))
-    exit(1);
-  if (i != 3)
-    exit(1);
-  exit(0);
-}