--- /dev/null
+#include <stdio.h>
+#include <string.h>
+
+#include <allParam.h>
+
+#include "f_lowercase_rel.h"
+
+int f_lowercase_rel(const char *testid, const Param *param) {
+ char *name = "file";
+ char *idx = "rname";
+ char result[PARAM_MAX_VALUE_LEN];
+ int rows;
+ int retVal;
+ int myRetVal;
+
+#ifdef VERBOSE
+ printf("%s : Param_getFilename: Lowercase input on correct statements.\n", testid);
+#endif
+
+ retVal = Param_getFilename(param, name, idx, &rows, result);
+ if ((rows == 1) && result && (strcmp(result, "test/blob/BLOB") == 0) && (retVal == 0)) {
+ myRetVal = 0;
+ printf("%s : Passed.\n", testid);
+ } else {
+#ifdef VERBOSE
+ printf("%s : Failed. Rows: %d, result: \'%s\', return Value: %d.\n", testid, rows, result, retVal);
+ printf("%s : Error string: %s\n", testid, Param_getErrStr(param));
+ myRetVal = -1;
+#else
+ printf("%s : Failed.\n", testid);
+#endif
+ }
+ return myRetVal;
+}
+
--- /dev/null
+#ifndef F_LOWERCASE_REL_H
+#define F_LOWERCASE_REL_H
+
+#include <allParam.h>
+
+int f_lowercase_rel(const char *, const Param *);
+
+#endif