summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ACE/ChangeLog18
-rw-r--r--ACE/tests/Compiler_Features_02_Test.cpp2
-rw-r--r--ACE/tests/Compiler_Features_04_Test.cpp2
-rw-r--r--ACE/tests/Compiler_Features_05_Test.cpp2
-rw-r--r--ACE/tests/Compiler_Features_06_Test.cpp2
-rw-r--r--ACE/tests/Compiler_Features_07_Test.cpp2
-rw-r--r--ACE/tests/Compiler_Features_11_Test.cpp2
-rw-r--r--ACE/tests/Compiler_Features_12_Test.cpp2
-rw-r--r--ACE/tests/Compiler_Features_30_Test.cpp45
-rw-r--r--ACE/tests/run_test.lst1
-rw-r--r--ACE/tests/tests.mpc7
11 files changed, 18 insertions, 67 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index e4b414c000a..07421f29a8f 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,21 @@
+Thu Apr 10 11:54:12 UTC 2014 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * tests/Compiler_Features_02_Test.cpp:
+ * tests/Compiler_Features_04_Test.cpp:
+ * tests/Compiler_Features_05_Test.cpp:
+ * tests/Compiler_Features_06_Test.cpp:
+ * tests/Compiler_Features_07_Test.cpp:
+ * tests/Compiler_Features_11_Test.cpp:
+ * tests/Compiler_Features_12_Test.cpp:
+ Layout changes
+
+ * tests/run_test.lst:
+ * tests/tests.mpc:
+ * tests/Compiler_Features_30_Test.cpp:
+ Removed this test, an empty initializer list for
+ an array of unknown size is illegal according to the
+ C++ spec
+
Thu Apr 10 07:50:23 UTC 2014 Martin Corino <mcorino@remedy.nl>
* bin/PerlACE/TestTarget.pm:
diff --git a/ACE/tests/Compiler_Features_02_Test.cpp b/ACE/tests/Compiler_Features_02_Test.cpp
index d9e68ad1619..c8fc83a3fb1 100644
--- a/ACE/tests/Compiler_Features_02_Test.cpp
+++ b/ACE/tests/Compiler_Features_02_Test.cpp
@@ -18,8 +18,6 @@
// does not compile the platform is just too broken.
#include <map>
-
-
int
run_main (int, ACE_TCHAR *[])
{
diff --git a/ACE/tests/Compiler_Features_04_Test.cpp b/ACE/tests/Compiler_Features_04_Test.cpp
index f09464b3b7b..1a30a129c9a 100644
--- a/ACE/tests/Compiler_Features_04_Test.cpp
+++ b/ACE/tests/Compiler_Features_04_Test.cpp
@@ -18,8 +18,6 @@
// does not compile the platform is just too broken.
#include <set>
-
-
int
run_main (int, ACE_TCHAR *[])
{
diff --git a/ACE/tests/Compiler_Features_05_Test.cpp b/ACE/tests/Compiler_Features_05_Test.cpp
index 2e4b44cf067..8d5b9716abd 100644
--- a/ACE/tests/Compiler_Features_05_Test.cpp
+++ b/ACE/tests/Compiler_Features_05_Test.cpp
@@ -18,8 +18,6 @@
// does not compile the platform is just too broken.
#include <queue>
-
-
int
run_main (int, ACE_TCHAR *[])
{
diff --git a/ACE/tests/Compiler_Features_06_Test.cpp b/ACE/tests/Compiler_Features_06_Test.cpp
index 238dad8d9c7..e1d9e8c3e55 100644
--- a/ACE/tests/Compiler_Features_06_Test.cpp
+++ b/ACE/tests/Compiler_Features_06_Test.cpp
@@ -23,8 +23,6 @@
// header. Only a few platforms enforce this though...
#include <functional>
-
-
int
run_main (int, ACE_TCHAR *[])
{
diff --git a/ACE/tests/Compiler_Features_07_Test.cpp b/ACE/tests/Compiler_Features_07_Test.cpp
index 9d185dc9213..0ef06d49723 100644
--- a/ACE/tests/Compiler_Features_07_Test.cpp
+++ b/ACE/tests/Compiler_Features_07_Test.cpp
@@ -19,8 +19,6 @@
#include <set>
#include <string>
-
-
int
run_main (int, ACE_TCHAR *[])
{
diff --git a/ACE/tests/Compiler_Features_11_Test.cpp b/ACE/tests/Compiler_Features_11_Test.cpp
index 22fa5fb716a..ae78420f5f9 100644
--- a/ACE/tests/Compiler_Features_11_Test.cpp
+++ b/ACE/tests/Compiler_Features_11_Test.cpp
@@ -18,8 +18,6 @@
// does not compile the platform is just too broken.
#include <sstream>
-
-
int
run_main (int, ACE_TCHAR *[])
{
diff --git a/ACE/tests/Compiler_Features_12_Test.cpp b/ACE/tests/Compiler_Features_12_Test.cpp
index 3ec0826e445..5eeb1919741 100644
--- a/ACE/tests/Compiler_Features_12_Test.cpp
+++ b/ACE/tests/Compiler_Features_12_Test.cpp
@@ -14,8 +14,6 @@
#include "test_config.h"
-
-
template<typename T>
struct Pair
{
diff --git a/ACE/tests/Compiler_Features_30_Test.cpp b/ACE/tests/Compiler_Features_30_Test.cpp
deleted file mode 100644
index 86dfe952724..00000000000
--- a/ACE/tests/Compiler_Features_30_Test.cpp
+++ /dev/null
@@ -1,45 +0,0 @@
-// $Id$
-
-/**
- * This program checks if the compiler doesn't have a certain bug
- * that we encountered when testing C++11 features
- */
-
-#include "test_config.h"
-
-#if defined (ACE_HAS_CPP11)
-
-#include <cstdint>
-
-int
-run_main (int, ACE_TCHAR *[])
-{
- ACE_START_TEST (ACE_TEXT("Compiler_Features_30_Test"));
-
- int8_t t[] = {};
- int8_t x[] {};
- ACE_UNUSED_ARG (t);
- ACE_UNUSED_ARG (x);
-
- ACE_DEBUG ((LM_INFO,
- ACE_TEXT ("C++11 support ok\n")));
-
- ACE_END_TEST;
-
- return 0;
-}
-
-#else
-int
-run_main (int, ACE_TCHAR *[])
-{
- ACE_START_TEST (ACE_TEXT("Compiler_Features_30_Test"));
-
- ACE_DEBUG ((LM_INFO,
- ACE_TEXT ("No C++11 support enabled\n")));
-
- ACE_END_TEST;
- return 0;
-}
-
-#endif
diff --git a/ACE/tests/run_test.lst b/ACE/tests/run_test.lst
index 7e86943d7a4..e0b852e741a 100644
--- a/ACE/tests/run_test.lst
+++ b/ACE/tests/run_test.lst
@@ -101,7 +101,6 @@ Compiler_Features_26_Test
Compiler_Features_27_Test
Compiler_Features_28_Test
Compiler_Features_29_Test
-Compiler_Features_30_Test
Compiler_Features_31_Test
Compiler_Features_32_Test
Compiler_Features_33_Test
diff --git a/ACE/tests/tests.mpc b/ACE/tests/tests.mpc
index f9518427234..ccc2c9e7c07 100644
--- a/ACE/tests/tests.mpc
+++ b/ACE/tests/tests.mpc
@@ -771,13 +771,6 @@ project(Compiler_Features_29_Test) : acetest {
}
}
-project(Compiler_Features_30_Test) : acetest {
- exename = Compiler_Features_30_Test
- Source_Files {
- Compiler_Features_30_Test.cpp
- }
-}
-
project(Compiler_Features_31_Test) : acetest {
exename = Compiler_Features_31_Test
Source_Files {