[C-mpi-commits] SF.net SVN: c-mpi:[17] test/gossip
Status: Pre-Alpha
Brought to you by:
jmwozniak
|
From: <jmw...@us...> - 2010-04-20 16:07:35
|
Revision: 17
http://c-mpi.svn.sourceforge.net/c-mpi/?rev=17&view=rev
Author: jmwozniak
Date: 2010-04-20 16:07:29 +0000 (Tue, 20 Apr 2010)
Log Message:
-----------
Fix test.
Modified Paths:
--------------
clean.zsh
test/gossip/test03.c
Modified: clean.zsh
===================================================================
--- clean.zsh 2010-04-20 16:02:43 UTC (rev 16)
+++ clean.zsh 2010-04-20 16:07:29 UTC (rev 17)
@@ -1,6 +1,7 @@
#!/bin/zsh
# Cleanup before SVN operations
+# Use ./config.status to get going again after this
MODULES=( $( print **/module.mk ) )
if [[ ${#MODULES} > 0 ]]
Modified: test/gossip/test03.c
===================================================================
--- test/gossip/test03.c 2010-04-20 16:02:43 UTC (rev 16)
+++ test/gossip/test03.c 2010-04-20 16:07:29 UTC (rev 17)
@@ -14,13 +14,13 @@
printf(
"This test program will print an example debugging message on the final\n"
-"line of output if the GS_DEBUG_MASK environment variable is set to include\n"
+"line of output if the CMPI_DEBUG_MASK environment variable is set to include\n"
"\"example\" or \"all\" in its comma seperated list of masks:\n"
);
gossip_debug_init();
- gossip_do(MASK_EXAMPLE, NOTE("Hello"));
+ gossip_do(MASK_EXAMPLE, printf("Hello\n"));
MPI_Finalize();
return 0;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|