From a2b21c75b45abb7ed344b75a8f8f1edbf2f9b031 Mon Sep 17 00:00:00 2001 From: hades Date: Mon, 2 Apr 2001 11:43:42 +0000 Subject: [PATCH] *** empty log message *** --- allParam/test/bin/pre_ca_test.sh | 1 + allParam/test/bin/pre_file_test.sh | 2 ++ allParam/test/bin/pre_ora_test.sh | 10 ++++++++++ allParam/test/bin/pre_psql_test.sh | 10 ++++++++++ allParam/test/bin/pre_tcl_test.sh | 2 ++ allParam/test/int/i_store.c | 2 -- allParam/test/int/i_store_existing.c | 2 -- allParam/test/int/i_store_multiple.c | 2 -- allParam/test/string/s_store.c | 2 -- allParam/test/string/s_store_existing.c | 2 -- allParam/test/string/s_store_multiple.c | 2 -- allParam/test/string/s_store_whitespace.c | 2 -- 12 files changed, 25 insertions(+), 14 deletions(-) diff --git a/allParam/test/bin/pre_ca_test.sh b/allParam/test/bin/pre_ca_test.sh index 5dea6c1..1ec9b77 100644 --- a/allParam/test/bin/pre_ca_test.sh +++ b/allParam/test/bin/pre_ca_test.sh @@ -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 diff --git a/allParam/test/bin/pre_file_test.sh b/allParam/test/bin/pre_file_test.sh index 0275a2b..6df76bb 100644 --- a/allParam/test/bin/pre_file_test.sh +++ b/allParam/test/bin/pre_file_test.sh @@ -2,3 +2,5 @@ echo "Starting file_test ..." +rm -f *_s.tcl + diff --git a/allParam/test/bin/pre_ora_test.sh b/allParam/test/bin/pre_ora_test.sh index 083f248..dffc1b0 100644 --- a/allParam/test/bin/pre_ora_test.sh +++ b/allParam/test/bin/pre_ora_test.sh @@ -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 + diff --git a/allParam/test/bin/pre_psql_test.sh b/allParam/test/bin/pre_psql_test.sh index 8c476b7..b9db4bc 100644 --- a/allParam/test/bin/pre_psql_test.sh +++ b/allParam/test/bin/pre_psql_test.sh @@ -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 + diff --git a/allParam/test/bin/pre_tcl_test.sh b/allParam/test/bin/pre_tcl_test.sh index 65d9c09..15dcd62 100644 --- a/allParam/test/bin/pre_tcl_test.sh +++ b/allParam/test/bin/pre_tcl_test.sh @@ -2,3 +2,5 @@ echo "Starting tcl_test ..." +rm -f *_s.tcl + diff --git a/allParam/test/int/i_store.c b/allParam/test/int/i_store.c index 8d576aa..8b4ff01 100644 --- a/allParam/test/int/i_store.c +++ b/allParam/test/int/i_store.c @@ -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"); diff --git a/allParam/test/int/i_store_existing.c b/allParam/test/int/i_store_existing.c index 8a9f154..fd9ad4e 100644 --- a/allParam/test/int/i_store_existing.c +++ b/allParam/test/int/i_store_existing.c @@ -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); diff --git a/allParam/test/int/i_store_multiple.c b/allParam/test/int/i_store_multiple.c index 5bde134..5765876 100644 --- a/allParam/test/int/i_store_multiple.c +++ b/allParam/test/int/i_store_multiple.c @@ -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); diff --git a/allParam/test/string/s_store.c b/allParam/test/string/s_store.c index c5b2563..c5ebf65 100644 --- a/allParam/test/string/s_store.c +++ b/allParam/test/string/s_store.c @@ -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); diff --git a/allParam/test/string/s_store_existing.c b/allParam/test/string/s_store_existing.c index df8b87b..142cb29 100644 --- a/allParam/test/string/s_store_existing.c +++ b/allParam/test/string/s_store_existing.c @@ -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); diff --git a/allParam/test/string/s_store_multiple.c b/allParam/test/string/s_store_multiple.c index 940602f..06b36d7 100644 --- a/allParam/test/string/s_store_multiple.c +++ b/allParam/test/string/s_store_multiple.c @@ -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); diff --git a/allParam/test/string/s_store_whitespace.c b/allParam/test/string/s_store_whitespace.c index 41a4b8c..e52bf8b 100644 --- a/allParam/test/string/s_store_whitespace.c +++ b/allParam/test/string/s_store_whitespace.c @@ -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); -- 2.43.0