#define TESTNUMBER64 100000L
static int
-test_normal_rw (void)
+test_normal_rw ()
{
char *msg;
int64_t testNum;
}
static int
-test_emptystring_rw (void)
+test_emptystring_rw ()
{
char *msg;
char *readResultString;
}
static int
-test_bigstring_rw (void)
+test_bigstring_rw ()
{
char *msg;
char *readResultString;
}
static int
-test_directory_r(void){
+test_directory_r(){
char *msg;
char readResult[200];
const char *fileName = "/dev";
}
static int
-test_nullfile_rw (void)
+test_nullfile_rw ()
{
char *msg;
int64_t testNum;
}
static int
-test_fakestring_rw (void)
+test_fakestring_rw ()
{
char *msg;
int32_t tmpInt = 2;
}
static int
-test_fakemeta_rw (void)
+test_fakemeta_rw ()
{
char *msg;
int32_t tmpInt = 2;
}
static int
-test_fakebigmeta_rw (void)
+test_fakebigmeta_rw ()
{
char *msg;
int32_t tmpInt = 1024 * 1024 * 10;
}
static int
-check_string_rw (void)
+check_string_rw ()
{
GNUNET_assert (0 == test_nullstring_rw ());
GNUNET_assert (0 == test_emptystring_rw ());
}
static int
-check_metadata_rw (void)
+check_metadata_rw ()
{
GNUNET_assert (0 == test_fakebigmeta_rw ());
GNUNET_assert (0 == test_fakemeta_rw ());
}
static int
-check_file_rw (void)
+check_file_rw ()
{
GNUNET_assert (0 == test_normal_rw ());
GNUNET_assert (0 == test_nullfile_rw ());