script moved to tests
authorGianni Pucciani <Gianni.Pucciani@cern.ch>
Thu, 2 Oct 2008 10:27:12 +0000 (10:27 +0000)
committerGianni Pucciani <Gianni.Pucciani@cern.ch>
Thu, 2 Oct 2008 10:27:12 +0000 (10:27 +0000)
14 files changed:
org.glite.testsuites.ctb/LB/tests/Makefile [new file with mode: 0644]
org.glite.testsuites.ctb/LB/tests/lb-common.sh [moved from org.glite.testsuites.ctb/LB/lb-common.sh with 100% similarity]
org.glite.testsuites.ctb/LB/tests/lb-l2.sh [moved from org.glite.testsuites.ctb/LB/lb-l2.sh with 100% similarity]
org.glite.testsuites.ctb/LB/tests/lb-l2ILR.sh [moved from org.glite.testsuites.ctb/LB/lb-l2ILR.sh with 100% similarity]
org.glite.testsuites.ctb/LB/tests/lb-l2Stat.sh [moved from org.glite.testsuites.ctb/LB/lb-l2Stat.sh with 100% similarity]
org.glite.testsuites.ctb/LB/tests/lb-test-binaries.sh [moved from org.glite.testsuites.ctb/LB/lb-test-binaries.sh with 100% similarity]
org.glite.testsuites.ctb/LB/tests/lb-test-job-registration.sh [moved from org.glite.testsuites.ctb/LB/lb-test-job-registration.sh with 100% similarity]
org.glite.testsuites.ctb/LB/tests/lb-test-logger-local.sh [moved from org.glite.testsuites.ctb/LB/lb-test-logger-local.sh with 100% similarity]
org.glite.testsuites.ctb/LB/tests/lb-test-logger-remote.sh [moved from org.glite.testsuites.ctb/LB/lb-test-logger-remote.sh with 100% similarity]
org.glite.testsuites.ctb/LB/tests/lb-test-normal-event-delivery-remote.sh [moved from org.glite.testsuites.ctb/LB/lb-test-normal-event-delivery-remote.sh with 100% similarity]
org.glite.testsuites.ctb/LB/tests/lb-test-server-local.sh [moved from org.glite.testsuites.ctb/LB/lb-test-server-local.sh with 100% similarity]
org.glite.testsuites.ctb/LB/tests/lb-test-server-remote.sh [moved from org.glite.testsuites.ctb/LB/lb-test-server-remote.sh with 100% similarity]
org.glite.testsuites.ctb/LB/tests/test-common.sh [moved from org.glite.testsuites.ctb/LB/test-common.sh with 100% similarity]
org.glite.testsuites.ctb/LB/tests/testSocket.c [moved from org.glite.testsuites.ctb/LB/testSocket.c with 100% similarity]

diff --git a/org.glite.testsuites.ctb/LB/tests/Makefile b/org.glite.testsuites.ctb/LB/tests/Makefile
new file mode 100644 (file)
index 0000000..b50f0ca
--- /dev/null
@@ -0,0 +1,14 @@
+CC=gcc
+CFLAGS=
+EXEC=testSocket
+
+all: $(EXEC)
+
+testSocket: testSocket.c
+       $(CC) -o $@ $< $(CFLAGS) 
+       rm -f tests 
+       ln -fs . tests
+
+clean:
+       rm -rf *.o tests $(EXEC) *.tmp *.err
+