Skip to content
Snippets Groups Projects
Commit 48f47b98 authored by tewk's avatar tewk
Browse files

Added HAVE_ELAN support and remove endless loop in testme

parent 894869f8
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,12 @@ AUTOMAKE_OPTIONS = foreign ...@@ -2,6 +2,12 @@ AUTOMAKE_OPTIONS = foreign
noinst_PROGRAMS = task_mgr-test circular_buffer-test task_launch-test credential_util-test noinst_PROGRAMS = task_mgr-test circular_buffer-test task_launch-test credential_util-test
if WITH_ELAN
interconnect_lib = $(top_srcdir)/src/slurmd/libelan_interconnect.a
else
interconnect_lib = $(top_srcdir)/src/slurmd/libno_interconnect.a
endif
INCLUDES = -I$(top_srcdir)/src/common INCLUDES = -I$(top_srcdir)/src/common
LDADD = $(top_srcdir)/src/common/libcommon.la \ LDADD = $(top_srcdir)/src/common/libcommon.la \
...@@ -12,5 +18,6 @@ LDADD = $(top_srcdir)/src/common/libcommon.la \ ...@@ -12,5 +18,6 @@ LDADD = $(top_srcdir)/src/common/libcommon.la \
$(top_srcdir)/src/slurmd/signature_utils.o \ $(top_srcdir)/src/slurmd/signature_utils.o \
$(top_srcdir)/src/slurmd/io.o \ $(top_srcdir)/src/slurmd/io.o \
$(top_srcdir)/src/slurmd/pipes.o \ $(top_srcdir)/src/slurmd/pipes.o \
$(SSL_LIBS) $(SSL_LIBS) \
$(interconnect_lib)
#!/usr/bin/perl #!/usr/bin/perl
while(1)
{
open OUT, ">test.out" ; open OUT, ">test.out" ;
print OUT `date`; print OUT `date`;
print "TESTING\n" ; print "TESTING\n" ;
...@@ -31,4 +29,3 @@ print OUT "ONOTESTING\n" ; ...@@ -31,4 +29,3 @@ print OUT "ONOTESTING\n" ;
print OUT "ONOTESTING\n" ; print OUT "ONOTESTING\n" ;
print OUT "ONOTESTING\n" ; print OUT "ONOTESTING\n" ;
close OUT ; close OUT ;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment