You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2006/07/28 03:31:39 UTC

svn commit: r426354 - in /incubator/stdcxx/trunk/tests: include/system.h localization/22.locale.messages.cpp src/locale.cpp src/system.cpp

Author: sebor
Date: Thu Jul 27 18:31:38 2006
New Revision: 426354

URL: http://svn.apache.org/viewvc?rev=426354&view=rev
Log:
2006-07-27  Martin Sebor  <se...@roguewave.com>

	* system.h: Removed (moved to <rw_process.h>).
	* system.cpp: Ditto (moved to process.cpp).
	* 22.locale.messages.cpp (<rw_process.h>): Included instead of
	<system.h> to avoid potential clashes with system header of the
	same name.
	* locale.cpp: Ditto.

Removed:
    incubator/stdcxx/trunk/tests/include/system.h
    incubator/stdcxx/trunk/tests/src/system.cpp
Modified:
    incubator/stdcxx/trunk/tests/localization/22.locale.messages.cpp
    incubator/stdcxx/trunk/tests/src/locale.cpp

Modified: incubator/stdcxx/trunk/tests/localization/22.locale.messages.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/localization/22.locale.messages.cpp?rev=426354&r1=426353&r2=426354&view=diff
==============================================================================
--- incubator/stdcxx/trunk/tests/localization/22.locale.messages.cpp (original)
+++ incubator/stdcxx/trunk/tests/localization/22.locale.messages.cpp Thu Jul 27 18:31:38 2006
@@ -2,7 +2,7 @@
  *
  * 22.locale.messages.cpp - tests exercising the std::messages facet
  *
- * $Id: //stdlib/dev/tests/stdlib/locale/messages.cpp#42 $
+ * $Id: //stdlib/dev/tests/stdlib/locale/messages.cpp#43 $
  *
  ***************************************************************************
  *
@@ -31,8 +31,8 @@
 #include <driver.h>      // for rw_test()
 #include <environ.h>     // for rw_putenv()
 #include <file.h>        // for rw_nextfd()
-#include <system.h>      // for rw_system()
 #include <rw_locale.h>   // for rw_locales()
+#include <rw_process.h>  // for rw_system()
 
 #ifndef _MSC_VER
 #  include <nl_types.h>  // for cat operations

Modified: incubator/stdcxx/trunk/tests/src/locale.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/src/locale.cpp?rev=426354&r1=426353&r2=426354&view=diff
==============================================================================
--- incubator/stdcxx/trunk/tests/src/locale.cpp (original)
+++ incubator/stdcxx/trunk/tests/src/locale.cpp Thu Jul 27 18:31:38 2006
@@ -6,22 +6,23 @@
  *
  ************************************************************************
  *
- * Copyright 2005-2006 The Apache Software Foundation or its licensors,
- * as applicable.
+ * Licensed to the Apache Software  Foundation (ASF) under one or more
+ * contributor  license agreements.  See  the NOTICE  file distributed
+ * with  this  work  for  additional information  regarding  copyright
+ * ownership.   The ASF  licenses this  file to  you under  the Apache
+ * License, Version  2.0 (the  "License"); you may  not use  this file
+ * except in  compliance with the License.   You may obtain  a copy of
+ * the License at
  *
- * Copyright 2001-2006 Rogue Wave Software.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
+ * distributed under the  License is distributed on an  "AS IS" BASIS,
+ * WITHOUT  WARRANTIES OR CONDITIONS  OF ANY  KIND, either  express or
+ * implied.   See  the License  for  the  specific language  governing
+ * permissions and limitations under the License.
+ *
+ * Copyright 2001-2006 Rogue Wave Software.
  * 
  **************************************************************************/
 
@@ -31,9 +32,9 @@
 
 #include <rw_locale.h>
 
-#include <environ.h>    // for rw_putenv()
-#include <file.h>       // for SHELL_RM_RF, rw_tmpnam
-#include <system.h>     // for rw_system()
+#include <environ.h>      // for rw_putenv()
+#include <file.h>         // for SHELL_RM_RF, rw_tmpnam
+#include <rw_process.h>   // for rw_system()
 
 
 #if defined __linux__