summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-09-11 18:44:36 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-09-11 18:44:36 (GMT)
commita33e9619aac03d6135e837fdf95956843dc662cb (patch)
treee55e30e9419bca1fa2d096ed4840f54fb51fb2c2 /test
parent7fd9e85f62084d0ca81fbeb27d75e072a48acf6d (diff)
downloadhdf5-a33e9619aac03d6135e837fdf95956843dc662cb.zip
hdf5-a33e9619aac03d6135e837fdf95956843dc662cb.tar.gz
hdf5-a33e9619aac03d6135e837fdf95956843dc662cb.tar.bz2
[svn-r2533] Rolled back the changes I committed since Albert fixed the problem with
FILENAME being extern global...
Diffstat (limited to 'test')
-rw-r--r--test/bittests.c4
-rw-r--r--test/dpss_read.c4
-rw-r--r--test/dpss_write.c4
-rw-r--r--test/gass_append.c4
-rw-r--r--test/gass_read.c4
-rw-r--r--test/gass_write.c4
-rw-r--r--test/hyperslab.c4
-rw-r--r--test/srb_append.c4
-rw-r--r--test/srb_read.c4
-rw-r--r--test/srb_write.c4
-rw-r--r--test/testhdf5.c4
-rw-r--r--test/ttsafe.c4
12 files changed, 0 insertions, 48 deletions
diff --git a/test/bittests.c b/test/bittests.c
index 492691d..2c8daef 100644
--- a/test/bittests.c
+++ b/test/bittests.c
@@ -9,10 +9,6 @@
*/
#include <h5test.h>
-const char *FILENAME[] = {
- NULL
-};
-
#define H5T_PACKAGE
#include <H5Tpkg.h>
diff --git a/test/dpss_read.c b/test/dpss_read.c
index c7f4807..e2cd1c0 100644
--- a/test/dpss_read.c
+++ b/test/dpss_read.c
@@ -18,10 +18,6 @@
#include <h5test.h>
#include <strings.h>
-const char *FILENAME[] = {
- NULL
-};
-
#ifndef H5_HAVE_GRIDSTORAGE
int main(void)
{
diff --git a/test/dpss_write.c b/test/dpss_write.c
index 9386195..0fdb7e0 100644
--- a/test/dpss_write.c
+++ b/test/dpss_write.c
@@ -17,10 +17,6 @@
*/
#include <h5test.h>
-const char *FILENAME[] = {
- NULL
-};
-
#ifndef H5_HAVE_GRIDSTORAGE
int main(void)
{
diff --git a/test/gass_append.c b/test/gass_append.c
index 8b20394..30ad6b0 100644
--- a/test/gass_append.c
+++ b/test/gass_append.c
@@ -17,10 +17,6 @@
*/
#include <h5test.h>
-const char *FILENAME[] = {
- NULL
-};
-
#ifndef H5_HAVE_GASS
int main(void)
{
diff --git a/test/gass_read.c b/test/gass_read.c
index afefae4..74a39cd 100644
--- a/test/gass_read.c
+++ b/test/gass_read.c
@@ -18,10 +18,6 @@
#include <h5test.h>
#include <strings.h>
-const char *FILENAME[] = {
- NULL
-};
-
#ifndef H5_HAVE_GASS
int main(void)
{
diff --git a/test/gass_write.c b/test/gass_write.c
index ec51411..a4cb44f 100644
--- a/test/gass_write.c
+++ b/test/gass_write.c
@@ -17,10 +17,6 @@
*/
#include <h5test.h>
-const char *FILENAME[] = {
- NULL
-};
-
#ifndef H5_HAVE_GASS
int main(void)
{
diff --git a/test/hyperslab.c b/test/hyperslab.c
index b87ce7d..114336a 100644
--- a/test/hyperslab.c
+++ b/test/hyperslab.c
@@ -15,10 +15,6 @@
#include <H5MMprivate.h>
#include <H5Vprivate.h>
-const char *FILENAME[] = {
- NULL
-};
-
#ifndef HAVE_FUNCTION
#undef __FUNCTION__
#define __FUNCTION__ ""
diff --git a/test/srb_append.c b/test/srb_append.c
index 9cd6130..497f51b 100644
--- a/test/srb_append.c
+++ b/test/srb_append.c
@@ -51,10 +51,6 @@
*/
#include <h5test.h>
-const char *FILENAME[] = {
- NULL
-};
-
#ifndef H5_HAVE_SRB
int main(void)
{
diff --git a/test/srb_read.c b/test/srb_read.c
index e20085c..1b4794b 100644
--- a/test/srb_read.c
+++ b/test/srb_read.c
@@ -50,10 +50,6 @@
*/
#include <h5test.h>
-const char *FILENAME[] = {
- NULL
-};
-
#ifndef H5_HAVE_SRB
int main(void)
{
diff --git a/test/srb_write.c b/test/srb_write.c
index 1de3595..ebc50c6 100644
--- a/test/srb_write.c
+++ b/test/srb_write.c
@@ -51,10 +51,6 @@
#include <h5test.h>
-const char *FILENAME[] = {
- NULL
-};
-
#ifndef H5_HAVE_SRB
int main(void)
{
diff --git a/test/testhdf5.c b/test/testhdf5.c
index 16349d1..ea88a7c 100644
--- a/test/testhdf5.c
+++ b/test/testhdf5.c
@@ -58,10 +58,6 @@ int Verbosity;
/* ANY new test needs to have a prototype in tproto.h */
#include <testhdf5.h>
-const char *FILENAME[] = {
- NULL
-};
-
struct TestStruct {
int NumErrors;
char Description[64];
diff --git a/test/ttsafe.c b/test/ttsafe.c
index ae21c5a..6920321 100644
--- a/test/ttsafe.c
+++ b/test/ttsafe.c
@@ -45,10 +45,6 @@ static char RcsId[] = "@(#)$Revision$";
#include <stdarg.h>
#include <ttsafe.h>
-const char *FILENAME[] = {
- NULL
-};
-
#ifndef H5_HAVE_THREADSAFE
int main(void)
{