summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-11-11 14:24:45 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-11-12 09:36:21 +0100
commitb88c7583b8f54b2612424dc46d4fb52021d0cf26 (patch)
tree5fd529ee8862007339c4fe3340850f0c90921f05
parentmptests: Avoid build system defined defines (diff)
downloadrtems-b88c7583b8f54b2612424dc46d4fb52021d0cf26.tar.bz2
fstests: Use tmacros.h instead of pmacros.h
This avoids an extra include path. Update #3818.
-rw-r--r--testsuites/fstests/Makefile.am3
-rw-r--r--testsuites/fstests/fserror/test.c2
-rw-r--r--testsuites/fstests/fslink/test.c2
-rw-r--r--testsuites/fstests/fspatheval/test.c2
-rw-r--r--testsuites/fstests/fspermission/test.c2
-rw-r--r--testsuites/fstests/fsrdwr/init.c2
-rw-r--r--testsuites/fstests/fsrename/test.c2
-rw-r--r--testsuites/fstests/fsstatvfs/test.c2
-rw-r--r--testsuites/fstests/fssymlink/test.c2
-rw-r--r--testsuites/fstests/fstime/test.c2
-rw-r--r--testsuites/fstests/imfs_support/fs_support.c2
-rw-r--r--testsuites/fstests/jffs2_support/fs_support.c2
-rw-r--r--testsuites/fstests/mdosfs_support/fs_support.c2
-rw-r--r--testsuites/fstests/mimfs_support/fs_support.c2
-rw-r--r--testsuites/fstests/mrfs_support/fs_support.c2
-rw-r--r--testsuites/fstests/support/fstest_support.c2
16 files changed, 16 insertions, 17 deletions
diff --git a/testsuites/fstests/Makefile.am b/testsuites/fstests/Makefile.am
index 3e787bc773..9924b71c94 100644
--- a/testsuites/fstests/Makefile.am
+++ b/testsuites/fstests/Makefile.am
@@ -12,8 +12,7 @@ fs_screens =
fs_docs =
support_includes = -I$(top_srcdir)/../support/include
-test_includes = -I$(top_srcdir)/support \
- -I$(top_srcdir)/../psxtests/include
+test_includes = -I$(top_srcdir)/support
if TEST_fsbdpart01
fs_tests += fsbdpart01
diff --git a/testsuites/fstests/fserror/test.c b/testsuites/fstests/fserror/test.c
index c53aff82a0..cd31a18bb2 100644
--- a/testsuites/fstests/fserror/test.c
+++ b/testsuites/fstests/fserror/test.c
@@ -23,7 +23,7 @@
#include "fstest.h"
#include "fs_config.h"
-#include "pmacros.h"
+#include <tmacros.h>
const char rtems_test_name[] = "FSERROR " FILESYSTEM;
diff --git a/testsuites/fstests/fslink/test.c b/testsuites/fstests/fslink/test.c
index b65322beed..f92160bbcc 100644
--- a/testsuites/fstests/fslink/test.c
+++ b/testsuites/fstests/fslink/test.c
@@ -24,7 +24,7 @@
#include "fstest.h"
#include "fs_config.h"
-#include "pmacros.h"
+#include <tmacros.h>
const char rtems_test_name[] = "FSLINK " FILESYSTEM;
diff --git a/testsuites/fstests/fspatheval/test.c b/testsuites/fstests/fspatheval/test.c
index 5b9e40aa6a..7938946abd 100644
--- a/testsuites/fstests/fspatheval/test.c
+++ b/testsuites/fstests/fspatheval/test.c
@@ -22,7 +22,7 @@
#include "fstest.h"
#include "fs_config.h"
-#include "pmacros.h"
+#include <tmacros.h>
#define BUF_SIZE 100
diff --git a/testsuites/fstests/fspermission/test.c b/testsuites/fstests/fspermission/test.c
index 36675acfe8..53a83ed0fa 100644
--- a/testsuites/fstests/fspermission/test.c
+++ b/testsuites/fstests/fspermission/test.c
@@ -23,7 +23,7 @@
#include "fstest.h"
#include "fs_config.h"
-#include "pmacros.h"
+#include <tmacros.h>
const char rtems_test_name[] = "FSPERMISSION " FILESYSTEM;
diff --git a/testsuites/fstests/fsrdwr/init.c b/testsuites/fstests/fsrdwr/init.c
index b801b940c1..02b88c9a76 100644
--- a/testsuites/fstests/fsrdwr/init.c
+++ b/testsuites/fstests/fsrdwr/init.c
@@ -24,7 +24,7 @@
#include "fstest.h"
#include "fs_config.h"
-#include "pmacros.h"
+#include <tmacros.h>
const char rtems_test_name[] = "FSRDWR " FILESYSTEM;
diff --git a/testsuites/fstests/fsrename/test.c b/testsuites/fstests/fsrename/test.c
index 6799ab46e7..d5acb7031d 100644
--- a/testsuites/fstests/fsrename/test.c
+++ b/testsuites/fstests/fsrename/test.c
@@ -14,7 +14,7 @@
#include "fstest.h"
#include "fs_config.h"
#include "fstest_support.h"
-#include "pmacros.h"
+#include <tmacros.h>
#include <sys/stat.h>
#include <fcntl.h>
diff --git a/testsuites/fstests/fsstatvfs/test.c b/testsuites/fstests/fsstatvfs/test.c
index 0791efe614..5314749652 100644
--- a/testsuites/fstests/fsstatvfs/test.c
+++ b/testsuites/fstests/fsstatvfs/test.c
@@ -16,7 +16,7 @@
#include "fstest.h"
#include "fs_config.h"
-#include "pmacros.h"
+#include <tmacros.h>
const char rtems_test_name[] = "FSSTATVFS " FILESYSTEM;
diff --git a/testsuites/fstests/fssymlink/test.c b/testsuites/fstests/fssymlink/test.c
index ec5698f83f..7e90ebca82 100644
--- a/testsuites/fstests/fssymlink/test.c
+++ b/testsuites/fstests/fssymlink/test.c
@@ -24,7 +24,7 @@
#include "fstest.h"
#include "fs_config.h"
-#include "pmacros.h"
+#include <tmacros.h>
const char rtems_test_name[] = "FSSYMLINK " FILESYSTEM;
diff --git a/testsuites/fstests/fstime/test.c b/testsuites/fstests/fstime/test.c
index 7885373afd..5fa4193ae8 100644
--- a/testsuites/fstests/fstime/test.c
+++ b/testsuites/fstests/fstime/test.c
@@ -25,7 +25,7 @@
#ifdef __rtems__
#include "fstest.h"
#include "fs_config.h"
-#include "pmacros.h"
+#include <tmacros.h>
const char rtems_test_name[] = "FSTIME " FILESYSTEM;
#else
diff --git a/testsuites/fstests/imfs_support/fs_support.c b/testsuites/fstests/imfs_support/fs_support.c
index eec9a49413..04b8982603 100644
--- a/testsuites/fstests/imfs_support/fs_support.c
+++ b/testsuites/fstests/imfs_support/fs_support.c
@@ -9,7 +9,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
-#include "pmacros.h"
+#include <tmacros.h>
#include <sys/stat.h>
diff --git a/testsuites/fstests/jffs2_support/fs_support.c b/testsuites/fstests/jffs2_support/fs_support.c
index 666d023f99..a855c8edee 100644
--- a/testsuites/fstests/jffs2_support/fs_support.c
+++ b/testsuites/fstests/jffs2_support/fs_support.c
@@ -15,7 +15,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
-#include "pmacros.h"
+#include <tmacros.h>
#include <sys/stat.h>
#include <sys/types.h>
diff --git a/testsuites/fstests/mdosfs_support/fs_support.c b/testsuites/fstests/mdosfs_support/fs_support.c
index 4395182e0f..b43fca92a4 100644
--- a/testsuites/fstests/mdosfs_support/fs_support.c
+++ b/testsuites/fstests/mdosfs_support/fs_support.c
@@ -9,7 +9,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
-#include "pmacros.h"
+#include <tmacros.h>
#include "fs_config.h"
diff --git a/testsuites/fstests/mimfs_support/fs_support.c b/testsuites/fstests/mimfs_support/fs_support.c
index deec9dcc2d..7e54199f11 100644
--- a/testsuites/fstests/mimfs_support/fs_support.c
+++ b/testsuites/fstests/mimfs_support/fs_support.c
@@ -10,7 +10,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
-#include "pmacros.h"
+#include <tmacros.h>
#include <sys/stat.h>
#include <rtems/libio.h>
diff --git a/testsuites/fstests/mrfs_support/fs_support.c b/testsuites/fstests/mrfs_support/fs_support.c
index 24c82cbea1..0382bbb122 100644
--- a/testsuites/fstests/mrfs_support/fs_support.c
+++ b/testsuites/fstests/mrfs_support/fs_support.c
@@ -10,7 +10,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
-#include "pmacros.h"
+#include <tmacros.h>
#include <sys/stat.h>
#include <sys/types.h>
diff --git a/testsuites/fstests/support/fstest_support.c b/testsuites/fstests/support/fstest_support.c
index eedda92382..fcf1ef86a8 100644
--- a/testsuites/fstests/support/fstest_support.c
+++ b/testsuites/fstests/support/fstest_support.c
@@ -27,7 +27,7 @@
#include "fs_config.h"
#include "fstest.h"
-#include "pmacros.h"
+#include <tmacros.h>
void *volatile prevent_compiler_optimizations;