]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
*** empty log message ***
authorhades <hades>
Mon, 2 Apr 2001 11:43:42 +0000 (11:43 +0000)
committerhades <hades>
Mon, 2 Apr 2001 11:43:42 +0000 (11:43 +0000)
12 files changed:
allParam/test/bin/pre_ca_test.sh
allParam/test/bin/pre_file_test.sh
allParam/test/bin/pre_ora_test.sh
allParam/test/bin/pre_psql_test.sh
allParam/test/bin/pre_tcl_test.sh
allParam/test/int/i_store.c
allParam/test/int/i_store_existing.c
allParam/test/int/i_store_multiple.c
allParam/test/string/s_store.c
allParam/test/string/s_store_existing.c
allParam/test/string/s_store_multiple.c
allParam/test/string/s_store_whitespace.c

index 5dea6c1c686b16d3bfa866a6d01001bb684ff832..1ec9b77c4021459828ccf10a165f4ccf52158b33 100644 (file)
@@ -2,6 +2,7 @@
 
 echo "Starting ca_test ..."
 
+rm -f *_s.tcl
 ../ca/server/daq_tcl_param_cas 2>cas_test_protocol.txt &
 
 echo $! >> cas.pid
index 0275a2bab01dce34c596a6f656c65336c65dd0f3..6df76bb97a92084952b4a628cfb3a44cfca46b79 100644 (file)
@@ -2,3 +2,5 @@
 
 echo "Starting file_test ..."
 
+rm -f *_s.tcl
+
index 083f248fa17cd76d1b1cd619eddcf92d63ff4835..dffc1b0d9ae88ea29304166b378a0eb35265c52d 100644 (file)
@@ -2,3 +2,13 @@
 
 echo "Starting ora_test ..."
 
+rm -f *_s.tcl
+
+cp tcl/i_store.tcl i_store_s.tcl
+cp tcl/i_store_existing.tcl i_store_existing_s.tcl
+cp tcl/i_store_multiple.tcl i_store_multiple_s.tcl
+cp tcl/s_store.tcl s_store_s.tcl
+cp tcl/s_store_existing.tcl s_store_existing_s.tcl
+cp tcl/s_store_multiple.tcl s_store_multiple_s.tcl
+cp tcl/s_store_whitespace.tcl s_store_whitespace_s.tcl
+
index 8c476b73da93077ec71a5009462f6a0217100933..b9db4bc268a53c78faa277fc532af9d6450c7a4c 100644 (file)
@@ -2,3 +2,13 @@
 
 echo "Starting psql_test ..."
 
+rm -f *_s.tcl
+
+cp tcl/i_store.tcl i_store_s.tcl
+cp tcl/i_store_existing.tcl i_store_existing_s.tcl
+cp tcl/i_store_multiple.tcl i_store_multiple_s.tcl
+cp tcl/s_store.tcl s_store_s.tcl
+cp tcl/s_store_existing.tcl s_store_existing_s.tcl
+cp tcl/s_store_multiple.tcl s_store_multiple_s.tcl
+cp tcl/s_store_whitespace.tcl s_store_whitespace_s.tcl
+
index 65d9c091cf9bff319716e69869753ac4d37bfa62..15dcd62b4ee429c450d645436f88bf8af16e428f 100644 (file)
@@ -2,3 +2,5 @@
 
 echo "Starting tcl_test ..."
 
+rm -f *_s.tcl
+
index 8d576aa913a013238c28365dd71db329b5fe43cc..8b4ff01af1f44cc38585a98d0da3d22a0138fbb6 100644 (file)
@@ -22,8 +22,6 @@ int i_store(const char *testid) {
        printf("%s : Param_storeInt: Simple.\n", testid);
 #endif
 
-       truncate("i_store_s.tcl", 0);
-
        param = malloc(sizeof(Param));
        conSetupParam(param, "i_store");
 
index 8a9f154486e49a94f29e437d0349d9657bc5bc80..fd9ad4eb7751dbd4fa2e973fc64563c2287f2dd0 100644 (file)
@@ -22,8 +22,6 @@ int i_store_existing(const char *testid) {
        printf("%s : Param_storeInt: Store a Parameter already existing in the source.\n", testid);
 #endif
 
-       truncate("i_store_existing_s.tcl", 0);
-
        param = malloc(sizeof(Param));
        conSetupParam(param, testid);
 
index 5bde13408dd02887e736d0e99ac2b8c378c0ad3f..57658763667198a79e97212adaa73c296ba93635 100644 (file)
@@ -24,8 +24,6 @@ int i_store_multiple(const char *testid) {
        printf("%s : Param_storeInt: Storing a value multiple.\n", testid);
 #endif
 
-       truncate("i_store_multiple_s.tcl", 0);
-
        param = malloc(sizeof(Param));
        conSetupParam(param, testid);
 
index c5b2563e4a7e1c08899d95162c120816f9584918..c5ebf659c80dfc74b5897d8fe246d426bbb4426a 100644 (file)
@@ -22,8 +22,6 @@ int s_store(const char *testid) {
        printf("%s : Param_storeString: Simple.\n", testid);
 #endif
 
-       truncate("s_store_s.tcl", 0);
-
        param = malloc(sizeof(Param));
        conSetupParam(param, testid);
 
index df8b87b701683c46f5e4bd844b39eb83ff622a09..142cb2926e8cf9c9d8a082c09d0abfc444defe6e 100644 (file)
@@ -22,8 +22,6 @@ int s_store_existing(const char *testid) {
        printf("%s : Param_storeString: Store a Parameter already existing in the source.\n", testid);
 #endif
 
-       truncate("s_store_existing_s.tcl", 0);
-
        param = malloc(sizeof(Param));
        conSetupParam(param, testid);
 
index 940602f15a8343bd419e13d20b35109fed9c3860..06b36d7c9368b092d543986e77cfa71f31e5f9fc 100644 (file)
@@ -24,8 +24,6 @@ int s_store_multiple(const char *testid) {
        printf("%s : Param_storeString: Storing a value multiple.\n", testid);
 #endif
 
-       truncate("s_store_multiple_s.tcl", 0);
-
        param = malloc(sizeof(Param));
        conSetupParam(param, testid);
 
index 41a4b8cfd011d221374f47091d9166a9f5a0dda8..e52bf8bb9e072d483d05b90fa79ca2dead666952 100644 (file)
@@ -22,8 +22,6 @@ int s_store_whitespace(const char *testid) {
        printf("%s : Param_storeString: Store a string containing a whitespace.\n", testid);
 #endif
 
-       truncate("s_store_whitespace_s.tcl", 0);
-
        param = malloc(sizeof(Param));
        conSetupParam(param, testid);