summaryrefslogtreecommitdiffstats
path: root/test/testframe.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2006-04-07 15:34:40 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2006-04-07 15:34:40 (GMT)
commite3cdaeab1c75130cd0d20af7d2949dd83f50a344 (patch)
tree63bf72b65a25a49403a37ad01c24bab420db561a /test/testframe.c
parentd4a986445c1371eafe67d798de3fd1311cbc3479 (diff)
downloadhdf5-e3cdaeab1c75130cd0d20af7d2949dd83f50a344.zip
hdf5-e3cdaeab1c75130cd0d20af7d2949dd83f50a344.tar.gz
hdf5-e3cdaeab1c75130cd0d20af7d2949dd83f50a344.tar.bz2
[svn-r12210] Purpose:
feature Description: Added the GetTestExpress and SetTestExpress to support the TestExpress mode according to $HDF5TextExpress. For now, it is just defined or not, the actual value does not matter. Platforms tested: heping(serial), mir (PP).
Diffstat (limited to 'test/testframe.c')
-rw-r--r--test/testframe.c47
1 files changed, 47 insertions, 0 deletions
diff --git a/test/testframe.c b/test/testframe.c
index f4c19c2..4c645c2 100644
--- a/test/testframe.c
+++ b/test/testframe.c
@@ -47,6 +47,7 @@ static int num_errs = 0; /* Total number of errors during testing */
static int Verbosity = VERBO_DEF; /* Default Verbosity is Low */
static int Summary = 0; /* Show test summary. Default is no. */
static int CleanUp = 1; /* Do cleanup or not. Default is yes. */
+static int TestExpress = -1; /* Do TestExpress or not. -1 means not set yet. */
static TestStruct Test[MAXNUMOFTESTS];
static int Index = 0;
static const void *Test_parameters = NULL;
@@ -376,6 +377,52 @@ int SetTestVerbosity(int newval)
}
/*
+ * Retrieve the TestExpress mode for the testing framework
+ * Values: non-zero means TestExpress mode is on, 0 means off.
+ *
+ * Design:
+ If the environment variable $HDF5TestExpress is defined,
+ then an intensive test should run the test in an express
+ mode such that it completes sooner.
+
+ Terms:
+ Intensive means tests that take more than minutes, say 5 minutes,
+ to complete.
+ "sooner" means tests will finish under 5 minutes.
+ Express mode--probably use smaller test sizes, or skip some tests.
+ Test program should print a caution that it is running the express
+ mode.
+
+ Implementation:
+ I think this can be easily implemented in the test library (libh5test.a)
+ so that all tests can just call it to check the status of $HDF5TestExpress.
+ For now, it is just defined or not, the actual value does not matter.
+ It is possible to define levels of express but I could not think of a
+ good use case for it.
+ */
+int GetTestExpress(void)
+{
+ /* set it here for now. Should be done in something like h5test_init(). */
+ if (TestExpress==-1)
+ SetTestExpress(getenv("HDF5TestExpress")? 1 : 0);
+ return(TestExpress);
+}
+
+/*
+ * Set the TestExpress mode for the testing framework.
+ * Return previous TestExpress mode.
+ * Values: non-zero means TestExpress mode is on, 0 means off.
+ */
+int SetTestExpress(int newval)
+{
+ int oldval;
+
+ oldval = TestExpress;
+ TestExpress = newval;
+ return(oldval);
+}
+
+/*
* Retrieve Summary request value.
* 0 means no summary, 1 means yes.
*/