aboutsummaryrefslogtreecommitdiff
path: root/src/cctest
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-10-04 22:03:46 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-10-04 22:03:46 +0000
commitd66e3ff53999a96a9402e586bfc04ae8064fef8f (patch)
tree5a1861add5e5bac08e2ec9219388127e26c18854 /src/cctest
parent0cca329914063e0a34b472c77e81385d0a2b5560 (diff)
add Peter Diener's results for icc6, hitachi, loslobos
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@792 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/cctest')
-rw-r--r--src/cctest/namespace/status21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/cctest/namespace/status b/src/cctest/namespace/status
index 3384b4d..cf7ff71 100644
--- a/src/cctest/namespace/status
+++ b/src/cctest/namespace/status
@@ -57,6 +57,15 @@ CXX='icc -ansi -Xc'
==> #include <cstdio>; using std::printf; printf() is ok
==> #include <cstdio>; using namespace std; printf() is ok
+Peter Diener's Laptop using icc version 6.0
+options: -ansi -Xc
+==> #include <stdio.h>; printf() is ok
+==> #include <stdio.h>; using namespace std; printf() is ok
+==> #include <cstdio>; printf() is ok (THIS SHOULD FAIL)
+==> #include <cstdio>; std::printf() is ok
+==> #include <cstdio>; using std::printf; printf() is ok
+==> #include <cstdio>; using namespace std; printf() is ok
+
# tested with older version of these tests; should rerun
origin.aei.mpg.de
MIPSpro Compilers: Version 7.3.1.2m
@@ -64,3 +73,15 @@ Wed Sep 25 20:00:36 CEST 2002
CXX='CC -LANG:std'
==> <stdio.h> fns in the global namespace are ok
all others fail
+
+Hitachi using sCC (native)
+options: -64 -stl -O3 -pvec -predicate -model=F1
+==> #include <stdio.h>; printf() is ok
+==> #include <stdio.h>; using namespace std; printf() is ok
+==> #include <cstdio>; printf() is ok (THIS SHOULD FAIL)
+==> #include <cstdio>; std::printf() is ok
+==> #include <cstdio>; using namespace std; printf() is ok
+
+Loslobos using pgCC version 3.2-3
+options: -tused -O2
+==> #include <stdio.h>; printf() is ok