[C-mpi-commits] SF.net SVN: c-mpi:[24] test/adts
Status: Pre-Alpha
Brought to you by:
jmwozniak
|
From: <jmw...@us...> - 2010-04-20 16:23:47
|
Revision: 24
http://c-mpi.svn.sourceforge.net/c-mpi/?rev=24&view=rev
Author: jmwozniak
Date: 2010-04-20 16:23:41 +0000 (Tue, 20 Apr 2010)
Log Message:
-----------
Better name.
Added Paths:
-----------
test/adts/test-list.c
Removed Paths:
-------------
test/adts/test06.c
Copied: test/adts/test-list.c (from rev 14, test/adts/test06.c)
===================================================================
--- test/adts/test-list.c (rev 0)
+++ test/adts/test-list.c 2010-04-20 16:23:41 UTC (rev 24)
@@ -0,0 +1,28 @@
+
+/**
+ * Test list functionality.
+ * */
+
+#include <list.h>
+
+int
+main(int argc, char* argv[])
+{
+ struct list* L;
+
+ MPI_Init(&argc, &argv);
+ whoami();
+
+ L = list_parse("jkl iop l");
+
+ list_printf("%s", L);
+ fflush(stdout);
+ list_destroy(L);
+
+ L = list_parse(" jkl iop l ");
+ list_printf("%s", L);
+ list_destroy(L);
+
+ MPI_Finalize();
+ return 0;
+}
Property changes on: test/adts/test-list.c
___________________________________________________________________
Added: svn:mergeinfo
+
Deleted: test/adts/test06.c
===================================================================
--- test/adts/test06.c 2010-04-20 16:22:03 UTC (rev 23)
+++ test/adts/test06.c 2010-04-20 16:23:41 UTC (rev 24)
@@ -1,28 +0,0 @@
-
-/**
- * Test list functionality.
- * */
-
-#include <list.h>
-
-int
-main(int argc, char* argv[])
-{
- struct list* L;
-
- MPI_Init(&argc, &argv);
- whoami();
-
- L = list_parse("jkl iop l");
-
- list_printf("%s", L);
- fflush(stdout);
- list_destroy(L);
-
- L = list_parse(" jkl iop l ");
- list_printf("%s", L);
- list_destroy(L);
-
- MPI_Finalize();
- return 0;
-}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|