summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-02-08 15:57:04 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-02-08 15:57:04 +0100
commit28860ec03c339eb936205cd7750b0e1584981521 (patch)
tree74d27523a1ac6def54c19f7322b1232ea73a4ea7 /testsuites
parentPOSIX conformance (diff)
downloadrtems-28860ec03c339eb936205cd7750b0e1584981521.tar.bz2
Fixed warnings and minor bugs
o Due to the usual integer propagation rules care must be taken in case off_t is involved. o Use the effective UID and GID consistently.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/fstests/fserror/test.c10
-rw-r--r--testsuites/fstests/fslink/test.c2
-rw-r--r--testsuites/fstests/fspatheval/test.c8
-rw-r--r--testsuites/fstests/fspermission/test.c18
-rw-r--r--testsuites/fstests/fsrdwr/init.c42
-rw-r--r--testsuites/fstests/fssymlink/test.c4
-rw-r--r--testsuites/fstests/fstime/test.c2
-rw-r--r--testsuites/fstests/imfs_support/fs_support.c1
-rw-r--r--testsuites/fstests/mdosfs_support/fs_support.c1
-rw-r--r--testsuites/fstests/mimfs_support/fs_support.c1
-rw-r--r--testsuites/fstests/mrfs_support/fs_support.c1
-rw-r--r--testsuites/fstests/support/fstest.h1
-rw-r--r--testsuites/fstests/support/fstest_support.c2
13 files changed, 50 insertions, 43 deletions
diff --git a/testsuites/fstests/fserror/test.c b/testsuites/fstests/fserror/test.c
index 7c48024104..5e43a9e8d0 100644
--- a/testsuites/fstests/fserror/test.c
+++ b/testsuites/fstests/fserror/test.c
@@ -26,7 +26,7 @@
#include "fstest.h"
#include "pmacros.h"
-void open_mkdir_error (void)
+static void open_mkdir_error (void)
{
int fd;
int status;
@@ -107,7 +107,7 @@ void open_mkdir_error (void)
}
-void rename_error (void)
+static void rename_error (void)
{
int fd;
@@ -192,7 +192,7 @@ void rename_error (void)
rtems_test_assert (status == 0);
}
-void truncate_error (void)
+static void truncate_error (void)
{
int fd;
@@ -231,7 +231,7 @@ void truncate_error (void)
}
-void rmdir_unlink_error (void)
+static void rmdir_unlink_error (void)
{
int status;
int fd;
@@ -304,7 +304,7 @@ void rmdir_unlink_error (void)
}
-void rdwr_error (void)
+static void rdwr_error (void)
{
int status;
diff --git a/testsuites/fstests/fslink/test.c b/testsuites/fstests/fslink/test.c
index fd30362f73..b2e062c4f9 100644
--- a/testsuites/fstests/fslink/test.c
+++ b/testsuites/fstests/fslink/test.c
@@ -30,7 +30,7 @@
/*
* Test if the successful call works as expect
*/
-void link_test01 (void)
+static void link_test01 (void)
{
char *name0 = "t0";
char *name1 = "t1";
diff --git a/testsuites/fstests/fspatheval/test.c b/testsuites/fstests/fspatheval/test.c
index 9ac61b390f..9df57f5616 100644
--- a/testsuites/fstests/fspatheval/test.c
+++ b/testsuites/fstests/fspatheval/test.c
@@ -27,7 +27,7 @@
#define BUF_SIZE 100
-void make_multiple_files (char **files,int is_directory)
+static void make_multiple_files (char **files,int is_directory)
{
int i;
int status;
@@ -54,7 +54,7 @@ void make_multiple_files (char **files,int is_directory)
puts ("");
}
-void remove_multiple_files (char **files,int is_directory)
+static void remove_multiple_files (char **files,int is_directory)
{
int i;
int status;
@@ -83,7 +83,7 @@ void remove_multiple_files (char **files,int is_directory)
puts ("");
}
-void path_eval_test01 (void)
+static void path_eval_test01 (void)
{
char *valid_path[] = {
"/test1/",
@@ -150,7 +150,7 @@ void path_eval_test01 (void)
remove_multiple_files(valid_name,0);
}
-void path_eval_test02(void )
+static void path_eval_test02(void )
{
int status;
diff --git a/testsuites/fstests/fspermission/test.c b/testsuites/fstests/fspermission/test.c
index 74324243e4..7b9e1c26b1 100644
--- a/testsuites/fstests/fspermission/test.c
+++ b/testsuites/fstests/fspermission/test.c
@@ -30,7 +30,7 @@
/*
* Test the umask
*/
-void umask_test01(void )
+static void umask_test01(void )
{
mode_t previous_cmask;
@@ -158,7 +158,7 @@ void umask_test01(void )
/*
* Check the file mode in file and directory
*/
-void test_premission01(void )
+static void test_premission01(void )
{
mode_t tmp_mode;
struct stat statbuf;
@@ -196,11 +196,9 @@ void test_premission01(void )
status=chdir(wd);
rtems_test_assert(status==0);
- status=setgid(group_id);
- rtems_test_assert(status==0);
status=seteuid(user_id);
rtems_test_assert(status==0);
- status=seteuid(user_id);
+ status=setegid(group_id);
rtems_test_assert(status==0);
@@ -349,7 +347,7 @@ void test_premission01(void )
status=seteuid(0);
rtems_test_assert(status==0);
- status=setgid(another_group_id);
+ status=setegid(another_group_id);
rtems_test_assert(status==0);
status=seteuid(another_user_id);
@@ -376,7 +374,7 @@ void test_premission01(void )
*/
status=seteuid(0);
rtems_test_assert(status==0);
- status=setgid(0);
+ status=setegid(0);
rtems_test_assert(status==0);
free(data_buf);
@@ -387,7 +385,7 @@ void test_premission01(void )
/*
* Test chown and chmod
*/
-void test_premission02(void )
+static void test_premission02(void )
{
struct stat statbuf;
int status = 0;
@@ -459,7 +457,7 @@ void test_premission02(void )
status=chdir("..");
rtems_test_assert(status==0);
}
-void root_test(void )
+static void root_test(void )
{
int fd;
int sc;
@@ -469,7 +467,7 @@ void root_test(void )
rtems_test_assert(sc==0);
fd=open("test",O_RDONLY);
- rtems_test_assert(fd!=-1);
+ rtems_test_assert(fd==-1);
}
void test(void )
diff --git a/testsuites/fstests/fsrdwr/init.c b/testsuites/fstests/fsrdwr/init.c
index aa5404ac85..ef2b02a0b8 100644
--- a/testsuites/fstests/fsrdwr/init.c
+++ b/testsuites/fstests/fsrdwr/init.c
@@ -32,7 +32,7 @@ const char *databuf =
"4Happy days are here again.5Happy days are here again.6Happy days are here "
"again.7Happy days are here again.";
-void
+static void
read_write_test (void)
{
@@ -184,7 +184,7 @@ read_write_test (void)
rtems_test_assert (status == 0);
}
-void
+static void
truncate_test03 (void)
{
@@ -282,12 +282,12 @@ truncate_test03 (void)
rtems_test_assert (status == 0);
}
-void
+static void
lseek_test (void)
{
int fd;
int status;
- char *name01 = "test_name01";
+ const char *name01 = "test_name01";
struct stat statbuf;
int n;
@@ -295,7 +295,7 @@ lseek_test (void)
size_t len = strlen (databuf);
off_t pos;
- int total_written = 0;
+ ssize_t total_written = 0;
char *readbuf;
mode_t mode = S_IRWXU | S_IRWXG | S_IRWXO;
@@ -366,15 +366,18 @@ lseek_test (void)
pos = lseek (fd, 0, SEEK_CUR);
rtems_test_assert (pos == total_written + 1);
-
- status = close (fd);
- rtems_test_assert (status == 0);
-
/*
* Check the file size
*/
- status = stat (name01, &statbuf);
- rtems_test_assert (statbuf.st_size == total_written);
+ status = fstat (fd, &statbuf);
+ rtems_test_assert (status == 0);
+ rtems_test_assert (statbuf.st_size == total_written + 1);
+
+ status = ftruncate (fd, total_written);
+ rtems_test_assert (status == 0);
+
+ status = close (fd);
+ rtems_test_assert (status == 0);
/*
* Open the file with O_RDONLY and check the lseek
@@ -393,7 +396,7 @@ lseek_test (void)
rtems_test_assert (n == len);
rtems_test_assert (!strncmp (databuf, readbuf, len));
- pos = lseek (fd, -len, SEEK_CUR);
+ pos = lseek (fd, -(off_t) len, SEEK_CUR);
rtems_test_assert (pos == 3 * len);
n = read (fd, readbuf, len);
rtems_test_assert (n == len);
@@ -410,7 +413,7 @@ lseek_test (void)
rtems_test_assert (n == len);
rtems_test_assert (strncmp (databuf, readbuf, len) != 0);
- pos = lseek (fd, -len, SEEK_END);
+ pos = lseek (fd, -(off_t) len, SEEK_END);
n = read (fd, readbuf, 2 * len);
rtems_test_assert (n == len);
rtems_test_assert (!strncmp (databuf, readbuf, len));
@@ -436,7 +439,7 @@ lseek_test (void)
rtems_test_assert (n == len);
rtems_test_assert (!strncmp (databuf, readbuf, len));
- pos = lseek (fd, -len, SEEK_CUR);
+ pos = lseek (fd, -(off_t) len, SEEK_CUR);
rtems_test_assert (pos == 3 * len);
n = read (fd, readbuf, len);
rtems_test_assert (n == len);
@@ -458,7 +461,7 @@ lseek_test (void)
/*
* Use SEEK_END
*/
- pos = lseek (fd, -len, SEEK_END);
+ pos = lseek (fd, -(off_t) len, SEEK_END);
n = read (fd, readbuf, 2 * len);
rtems_test_assert (n == len);
rtems_test_assert (!strncmp (databuf, readbuf, len));
@@ -468,14 +471,14 @@ lseek_test (void)
/*
* Write the zero to the end of file.
*/
- pos = lseek (fd, -len, SEEK_END);
- rtems_test_assert (pos == total_written - len);
+ pos = lseek (fd, -(off_t) len, SEEK_END);
+ rtems_test_assert (pos == (off_t) total_written - (off_t) len);
n = write (fd, readbuf, len);
rtems_test_assert (n == len);
/*
* Verify it
*/
- pos = lseek (fd, total_written - len, SEEK_SET);
+ pos = lseek (fd, (off_t) total_written - (off_t) len, SEEK_SET);
n = read (fd, readbuf, len);
rtems_test_assert (n == len);
for (i = 0; i < n; i++) {
@@ -485,7 +488,7 @@ lseek_test (void)
/*
* Write the zero to the beginning of file.
*/
- pos = lseek (fd, -total_written, SEEK_END);
+ pos = lseek (fd, -(off_t) total_written, SEEK_END);
rtems_test_assert (pos == 0);
n = write (fd, readbuf, len);
rtems_test_assert (n == len);
@@ -527,4 +530,5 @@ test (void)
{
read_write_test ();
lseek_test ();
+ truncate_test03 ();
}
diff --git a/testsuites/fstests/fssymlink/test.c b/testsuites/fstests/fssymlink/test.c
index 84329e2b98..e009907bd7 100644
--- a/testsuites/fstests/fssymlink/test.c
+++ b/testsuites/fstests/fssymlink/test.c
@@ -32,7 +32,7 @@
* Test the function of symlink
*/
-void symlink_test01(void )
+static void symlink_test01(void )
{
int fd;
char* file01="file";
@@ -128,7 +128,7 @@ void symlink_test01(void )
/*
* symlink loop error test
*/
-void symlink_loop_error_test(void )
+static void symlink_loop_error_test(void )
{
char* file01="file01";
char* file02="file02";
diff --git a/testsuites/fstests/fstime/test.c b/testsuites/fstests/fstime/test.c
index 7f570b16ce..fe6bcee941 100644
--- a/testsuites/fstests/fstime/test.c
+++ b/testsuites/fstests/fstime/test.c
@@ -28,7 +28,7 @@
#include "fstest.h"
#include "pmacros.h"
-void time_test01 (void)
+static void time_test01 (void)
{
struct stat statbuf;
struct utimbuf timbuf;
diff --git a/testsuites/fstests/imfs_support/fs_support.c b/testsuites/fstests/imfs_support/fs_support.c
index 814a8475c5..b7a735768a 100644
--- a/testsuites/fstests/imfs_support/fs_support.c
+++ b/testsuites/fstests/imfs_support/fs_support.c
@@ -16,6 +16,7 @@
#include <sys/stat.h>
#include "fstest.h"
+#include "fstest_support.h"
void
test_initialize_filesystem (void)
diff --git a/testsuites/fstests/mdosfs_support/fs_support.c b/testsuites/fstests/mdosfs_support/fs_support.c
index 96f8848f79..06dbb6151b 100644
--- a/testsuites/fstests/mdosfs_support/fs_support.c
+++ b/testsuites/fstests/mdosfs_support/fs_support.c
@@ -23,6 +23,7 @@
#include "ramdisk_support.h"
#include "fstest.h"
+#include "fstest_support.h"
#define BLOCK_SIZE 512
diff --git a/testsuites/fstests/mimfs_support/fs_support.c b/testsuites/fstests/mimfs_support/fs_support.c
index 6e87686d19..b835cb9ef4 100644
--- a/testsuites/fstests/mimfs_support/fs_support.c
+++ b/testsuites/fstests/mimfs_support/fs_support.c
@@ -18,6 +18,7 @@
#include <rtems/libio.h>
#include "fstest.h"
+#include "fstest_support.h"
void
test_initialize_filesystem (void)
diff --git a/testsuites/fstests/mrfs_support/fs_support.c b/testsuites/fstests/mrfs_support/fs_support.c
index ca779aa3fd..ec57e18f24 100644
--- a/testsuites/fstests/mrfs_support/fs_support.c
+++ b/testsuites/fstests/mrfs_support/fs_support.c
@@ -23,6 +23,7 @@
#include "ramdisk_support.h"
#include "fstest.h"
+#include "fstest_support.h"
#define BLOCK_SIZE (512)
diff --git a/testsuites/fstests/support/fstest.h b/testsuites/fstests/support/fstest.h
index 6342f75a21..d3fabac815 100644
--- a/testsuites/fstests/support/fstest.h
+++ b/testsuites/fstests/support/fstest.h
@@ -50,6 +50,7 @@
FS_FAIL();\
} while (0)
+void test(void);
#define BASE_FOR_TEST "/mnt"
#endif
diff --git a/testsuites/fstests/support/fstest_support.c b/testsuites/fstests/support/fstest_support.c
index 5d8dd4c36a..239bdb91f3 100644
--- a/testsuites/fstests/support/fstest_support.c
+++ b/testsuites/fstests/support/fstest_support.c
@@ -34,7 +34,7 @@
/* Break out of a chroot() environment in C */
-void break_out_of_chroot(void)
+static void break_out_of_chroot(void)
{
int dir_fd; /* File descriptor to directory */