=================================================================== RCS file: /home/cvs/OpenXM/src/util/test.c,v retrieving revision 1.5 retrieving revision 1.7 diff -u -p -r1.5 -r1.7 --- OpenXM/src/util/test.c 2003/12/03 03:21:16 1.5 +++ OpenXM/src/util/test.c 2004/08/12 12:11:41 1.7 @@ -1,4 +1,4 @@ -/* $OpenXM: OpenXM/src/util/test.c,v 1.4 2003/12/01 03:15:37 takayama Exp $ */ +/* $OpenXM: OpenXM/src/util/test.c,v 1.6 2004/03/02 06:23:34 takayama Exp $ */ #include #include "ox_pathfinder.h" @@ -6,9 +6,31 @@ sGC_malloc(int a) { return GC_malloc(a); } +main() { + int n; + /* + n = oxpSendStringAsFile((char *)getenv("USER"), + "localhost", "t.t", "test\n"); + */ + n = oxpSendStringAsFile("taka", + "lemon2.math.kobe-u.ac.jp", "t.t", "test\n"); + printf("%d\n",n); +} /* which command */ -main(int argc,char *argv[]) { +main_1(int argc,char *argv[]) { char *s; + char **a; + int i; + + printf("hello\n"); fflush(NULL); + a = getServerEnv("bin/ox_sm1"); + i = 0; + if (a == NULL) {fprintf(stderr,"Not found.\n"); exit(10);} + while (a[i] != NULL) { + printf("i=%d, %s\n",i,a[i++]); + } + exit(0); + if (argc != 2) { fprintf(stderr,"test cmdname\n\n"); }