aboutsummaryrefslogtreecommitdiff
path: root/src/cctest
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-03-26 19:26:03 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-03-26 19:26:03 +0000
commit5d0a82bf83b74f3b1bf88ce83d8d9a2e6c01478b (patch)
tree21f29517647438ebb5433235597dc5b56e8ed5a3 /src/cctest
parenta161fa58363c856b3c943671d150d1ea9d55f555 (diff)
describe what's going on with these tests
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1028 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/cctest')
-rw-r--r--src/cctest/README3
-rw-r--r--src/cctest/inline-fns/README5
2 files changed, 7 insertions, 1 deletions
diff --git a/src/cctest/README b/src/cctest/README
index c817d1d..3edf30d 100644
--- a/src/cctest/README
+++ b/src/cctest/README
@@ -6,3 +6,6 @@ namespace/ This directory tests how namespaces are handled for
vector/ This directory test how namespaces are handled for
the STL vector class, eg <vector.h> vs <cvector>
+
+inline-fns/ This directory tests how inline functions are handled,
+ both within C++ classes and "globally"
diff --git a/src/cctest/inline-fns/README b/src/cctest/inline-fns/README
index 343642b..5d6444f 100644
--- a/src/cctest/inline-fns/README
+++ b/src/cctest/inline-fns/README
@@ -3,6 +3,9 @@ $Header$
This directory contains test programs to see how (or if!) compilers
handle inline functions.
-inline-fn.cc Tests a trivial non-class inline function.
+inline-fn.cc Tests a trivial non-class inline function
+ defined in the .cc file
+inline-fn2.cc Tests a trivial non-class inline function
+ defined in a header file
inline-class.cc Tests a trivial class containing an inline function
(and an out-of-line constructor)